diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-26 10:00:45 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-26 10:00:45 +0000 |
commit | 3795470f232acde41615fd9578ce28f2ea2238ed (patch) | |
tree | c3ac5e0b79f0922036f18bfcbb412a26c83d95ba /misc | |
parent | 4d6ee5217d0b5611c3e2aba7352207cc91cafd0e (diff) | |
download | ports-3795470f232acde41615fd9578ce28f2ea2238ed.tar.gz ports-3795470f232acde41615fd9578ce28f2ea2238ed.zip |
- Support staging
- Use shebangfix
Notes
Notes:
svn path=/head/; revision=346184
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ipbt/Makefile | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/misc/ipbt/Makefile b/misc/ipbt/Makefile index 330d1dc988eb..123c2e512fad 100644 --- a/misc/ipbt/Makefile +++ b/misc/ipbt/Makefile @@ -5,28 +5,22 @@ PORTNAME= ipbt DISTVERSION= r8765 CATEGORIES= misc MASTER_SITES= http://www.chiark.greenend.org.uk/~sgtatham/ipbt/ \ - ${MASTER_SITE_LOCAL} + LOCAL MASTER_SITE_SUBDIR= uqs MAINTAINER= uqs@FreeBSD.org COMMENT= A high-tech ttyrec player with improvements over ttyplay -MAN1= ipbt.1 - -USES= perl5 +USES= perl5 shebangfix ALL_TARGET= ${PORTNAME} -PLIST_FILES= bin/ipbt bin/ttygrep bin/ttydump - -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e '1s|.*|#!${PERL} -w|' ${WRKSRC}/sbcsgen.pl - @${REINPLACE_CMD} -e 's|perl|${PERL}|' ${WRKSRC}/${MAKEFILE} +PLIST_FILES= bin/ipbt bin/ttygrep bin/ttydump man/man1/ipbt.1.gz +SHEBANG_FILES= sbcsgen.pl Makefile ttygrep ttydump do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/ttydump ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/ttygrep ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ipbt.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/ttydump ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/ttygrep ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/ipbt.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include <bsd.port.mk> |