4bb37acce5
- Add support for pkgng. - ISCL License - Incorporates -a argument suggested by Marcel Bonnet in PR 179637. Hence this supersedes PR 179637, which can now be closed. - Other misc. fixes and enhancements, including correcting typos. PR: 190051 Submitted by: alex@stangl.us Approved by: swills (eadler)
31 lines
700 B
Makefile
31 lines
700 B
Makefile
# Created by: Alex Stangl <alex@stangl.us>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= portupdate-scan
|
|
PORTVERSION= 0.4
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= alex@stangl.us
|
|
COMMENT= Display pertinent parts of {PORTSDIR}/UPDATING
|
|
|
|
LICENSE= ISCL
|
|
|
|
NO_BUILD= yes
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= run
|
|
|
|
PLIST_FILES= sbin/portupdate-scan man/man8/portupdate-scan.8.gz
|
|
SHEBANG_FILES= portupdate-scan
|
|
SRC= ${.CURDIR}/src
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${SRC}/${PORTNAME} ${SRC}/${PORTNAME}.8 ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|