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 /ftp/frox | |
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 'ftp/frox')
-rw-r--r-- | ftp/frox/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftp/frox/Makefile b/ftp/frox/Makefile index aa5ea8edfa1a..8673dfc53f3f 100644 --- a/ftp/frox/Makefile +++ b/ftp/frox/Makefile @@ -30,8 +30,8 @@ MAN5= frox.conf.5 PORTDOCS= SECURITY CREDITS ChangeLog FAQ.html FAQ-1.html FAQ-2.html \ FAQ-3.html FAQ-4.html FAQ-5.html FAQ-6.html FAQ-7.html \ FAQ-8.html -PLIST_FILES= sbin/frox ${EXAMPLESDIR:S,${TARGETDIR}/,,}/frox.conf -PLIST_DIRS= ${EXAMPLESDIR:S,${TARGETDIR}/,,} +PLIST_FILES= sbin/frox ${EXAMPLESDIR:S,${PREFIX}/,,}/frox.conf +PLIST_DIRS= ${EXAMPLESDIR:S,${PREFIX}/,,} PKGMESSAGE= ${WRKDIR}/pkg-message @@ -73,7 +73,7 @@ CONFIGURE_ARGS+= --enable-run-as-root .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${TARGETDIR}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${PREFIX}/sbin ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${EXAMPLESDIR}/frox.conf ${INSTALL_MAN} ${WRKSRC}/doc/frox.man ${MANPREFIX}/man/man1/frox.1 @@ -86,7 +86,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} .endfor .endif - @${STRIP_CMD} ${TARGETDIR}/sbin/frox; \ + @${STRIP_CMD} ${PREFIX}/sbin/frox; \ ${CAT} ${PKGMESSAGE} .include <bsd.port.post.mk> |