diff options
author | gabor <gabor@FreeBSD.org> | 2007-08-04 19:41:30 +0800 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2007-08-04 19:41:30 +0800 |
commit | 1f31ff34b514d77244257a9a94391d3aae8edab0 (patch) | |
tree | a676504f8edaca31196a243aa7393f33f26078fa /lang/pugs | |
parent | fb4c30cf2c9bc123dc0c05a0e070f2c48e83be57 (diff) | |
download | freebsd-ports-gnome-1f31ff34b514d77244257a9a94391d3aae8edab0.tar.gz freebsd-ports-gnome-1f31ff34b514d77244257a9a94391d3aae8edab0.tar.zst freebsd-ports-gnome-1f31ff34b514d77244257a9a94391d3aae8edab0.zip |
- Remove the DESTDIR modifications from individual ports as we have a new,
fully chrooted DESTDIR, which does not need such any more.
Sponsored by: Google Summer of Code 2007
Approved by: portmgr (pav)
Diffstat (limited to 'lang/pugs')
-rw-r--r-- | lang/pugs/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/pugs/Makefile b/lang/pugs/Makefile index 484bcd49b9a3..ee7a36021a76 100644 --- a/lang/pugs/Makefile +++ b/lang/pugs/Makefile @@ -35,7 +35,7 @@ MAN3= Perl6::Pugs.3 \ Inline::Pugs.3 SITE_PERL6_REL= lib/perl6 -PERL6_MANPREFIX= ${TARGETDIR}/${SITE_PERL6_REL}/site_perl/auto/pugs/perl5 +PERL6_MANPREFIX= ${PREFIX}/${SITE_PERL6_REL}/site_perl/auto/pugs/perl5 SITE_PERL6_MAN3= Class::Rebless.3 \ PIL2JS::JSPM.3 \ Pugs::Compiler::Perl6.3 \ @@ -57,8 +57,8 @@ PLIST_SUB= SITE_PERL6_REL=${SITE_PERL6_REL} .include <bsd.port.pre.mk> post-configure: - @${REINPLACE_CMD} -e '/^INSTALLPRIVLIB/s,${PREFIX}/lib,${TARGETDIR}/lib/perl6,;' \ - -e '/^INSTALLARCHLIB/s,${PREFIX}/lib,${TARGETDIR}/lib/perl6/mach,' \ + @${REINPLACE_CMD} -e '/^INSTALLPRIVLIB/s,${PREFIX}/lib,${PREFIX}/lib/perl6,;' \ + -e '/^INSTALLARCHLIB/s,${PREFIX}/lib,${PREFIX}/lib/perl6/mach,' \ ${WRKSRC}/Makefile .if !defined(NOPORTDOCS) @@ -67,9 +67,9 @@ post-install: @${MKDIR} ${EXAMPLESDIR} @${CP} -R ${EXDIR}/ ${EXAMPLESDIR} @${FIND} -s ${EXAMPLESDIR} -type f | \ - ${SED} -e 's|^${TARGETDIR}/||' >> ${TMPPLIST} + ${SED} -e 's|^${PREFIX}/||' >> ${TMPPLIST} @${FIND} -d ${EXAMPLESDIR} -type d | \ - ${SED} -e 's|^${TARGETDIR}/|@dirrm |' >> ${TMPPLIST} + ${SED} -e 's|^${PREFIX}/|@dirrm |' >> ${TMPPLIST} .endif .include <bsd.port.post.mk> |