diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-27 07:37:41 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-27 07:37:41 +0000 |
commit | bf1f5c64da1f1bf5bc30af9a7d59aad9e80c90bd (patch) | |
tree | 2465533d3098535c65dbfcf266c16ebbc7b62be0 /ports-mgmt | |
parent | 445759942315c10032856dcacefcb31fb06480ae (diff) |
Notes
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portupdate-scan/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/ports-mgmt/portupdate-scan/Makefile b/ports-mgmt/portupdate-scan/Makefile index 6be1b5144cda..5713ea40b970 100644 --- a/ports-mgmt/portupdate-scan/Makefile +++ b/ports-mgmt/portupdate-scan/Makefile @@ -11,17 +11,19 @@ MAINTAINER= alex@stangl.us COMMENT= Display pertinent parts of {PORTSDIR}/UPDATING NO_BUILD= yes -USES= perl5 +USES= perl5 shebangfix USE_PERL5= run -PLIST_FILES= sbin/portupdate-scan +PLIST_FILES= sbin/portupdate-scan man/man8/portupdate-scan.8.gz +SHEBANG_FILES= portupdate-scan SRC= ${.CURDIR}/src -MAN8= portupdate-scan.8 +do-extract: + @${MKDIR} ${WRKSRC} + @${CP} ${SRC}/${PORTNAME} ${SRC}/${PORTNAME}.8 ${WRKSRC} -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${SRC}/portupdate-scan ${PREFIX}/sbin/portupdate-scan - ${INSTALL_MAN} ${SRC}/portupdate-scan.8 ${MAN8PREFIX}/man/man8 + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8 .include <bsd.port.mk> |