summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorabs <abs>2009-12-17 19:31:55 +0000
committerabs <abs>2009-12-17 19:31:55 +0000
commitcbfd065b34570ce896b6d5bb5ab798a191f0076e (patch)
tree73ad7f6dd26f213b8e7fce58198e3b974f5a23ea /www
parenta59571fed3c39c339a68da8744cc73cfa8c55454 (diff)
downloadpkgsrc-cbfd065b34570ce896b6d5bb5ab798a191f0076e.tar.gz
Fix the post-install to include DESTDIR references - not sufficient in itself so PKG_DESTDIR_SUPPORT not turned on
Diffstat (limited to 'www')
-rw-r--r--www/zope3/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/www/zope3/Makefile b/www/zope3/Makefile
index 1370f9a687b..b53c6c7e5c3 100644
--- a/www/zope3/Makefile
+++ b/www/zope3/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2009/02/09 22:56:28 joerg Exp $
+# $NetBSD: Makefile,v 1.21 2009/12/17 19:31:55 abs Exp $
#
DISTNAME= Zope-3.3.1
@@ -55,13 +55,13 @@ pre-install:
${FIND} ${WRKSRC} -name "*.orig" -type f -print | ${XARGS} ${RM} -f
post-install:
- ${LN} -s ${ZOPE3_DIR}/bin/mkzeoinstance ${PREFIX}/bin
- ${LN} -s ${ZOPE3_DIR}/bin/mkzopeinstance ${PREFIX}/bin
- ${LN} -s ${ZOPE3_DIR}/bin/zopetest ${PREFIX}/bin
+ ${LN} -s ${DESTDIR}${ZOPE3_DIR}/bin/mkzeoinstance ${DESTDIR}${PREFIX}/bin
+ ${LN} -s ${DESTDIR}${ZOPE3_DIR}/bin/mkzopeinstance ${DESTDIR}${PREFIX}/bin
+ ${LN} -s ${DESTDIR}${ZOPE3_DIR}/bin/zopetest ${DESTDIR}${PREFIX}/bin
${INSTALL_DATA_DIR} ${ZOPE3_DOCDIR}
cd ${WRKSRC}/Zope && pax -r -w LICENSES.txt ZopePublicLicense.txt \
- ${ZOPE3_DOCDIR}
- cd ${WRKSRC}/Zope/doc && pax -r -w *.txt ${ZOPE3_DOCDIR}
+ ${DESTDIR}${ZOPE3_DOCDIR}
+ cd ${WRKSRC}/Zope/doc && pax -r -w *.txt ${DESTDIR}${ZOPE3_DOCDIR}
.include "Makefile.common"
.include "../../devel/zlib/buildlink3.mk"