diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-26 07:14:19 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-26 07:14:19 +0000 |
commit | d77672679a45e6062fc61c48f06acb6b42cb442c (patch) | |
tree | 20a1a898291ee2e5b869bb6ebc82b6a541e15bec /irc | |
parent | de90ca6b109f73c8c4b618fea0a9b3211bd486a9 (diff) | |
download | ports-d77672679a45e6062fc61c48f06acb6b42cb442c.tar.gz ports-d77672679a45e6062fc61c48f06acb6b42cb442c.zip |
Notes
Diffstat (limited to 'irc')
-rw-r--r-- | irc/onis/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/irc/onis/Makefile b/irc/onis/Makefile index 77b982613c12..25de1c128f1d 100644 --- a/irc/onis/Makefile +++ b/irc/onis/Makefile @@ -10,13 +10,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A script that converts IRC logfiles into an HTML statistics page USES= perl5 -NO_BUILD= YES +NO_BUILD= yes -NO_STAGE= yes do-install: - @if [ ! -d ${DATADIR} ]; then \ - ${MKDIR} ${DATADIR}; \ - fi - ${CP} -R ${WRKSRC}/* ${DATADIR}/ + ${MKDIR} ${STAGEDIR}${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}) .include <bsd.port.mk> |