diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-03-13 22:49:58 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-03-13 22:49:58 +0800 |
commit | 209496f0e325859978ddc9bbfab6c412a47d2c2a (patch) | |
tree | f9d9dab7dda79c87ea76382a079f731044070c5c /security/httprint | |
parent | 5bb61efe0565787aa29c5afe48eecb61d2d8453d (diff) | |
download | freebsd-ports-gnome-209496f0e325859978ddc9bbfab6c412a47d2c2a.tar.gz freebsd-ports-gnome-209496f0e325859978ddc9bbfab6c412a47d2c2a.tar.zst freebsd-ports-gnome-209496f0e325859978ddc9bbfab6c412a47d2c2a.zip |
- Support staging
- Use COPYTREE_SHARE istead of CP
Diffstat (limited to 'security/httprint')
-rw-r--r-- | security/httprint/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/security/httprint/Makefile b/security/httprint/Makefile index 55a3053289f6..46b0bd83c1cb 100644 --- a/security/httprint/Makefile +++ b/security/httprint/Makefile @@ -16,10 +16,9 @@ USES= zip RESTRICTED= No cost for personal, education and non-commercial use. NO_BUILD= yes -NO_STAGE= yes do-install: - ${MKDIR} ${DATADIR} - ${CP} -Rp ${WRKSRC} ${DATADIR} - ${LN} -s ${DATADIR}/httprint ${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}) + ${LN} -s httprint ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> |