freebsd-ports/ports-mgmt/portlint/Makefile
Joe Marcus Clarke c1ecb0bd11 Update to 2.16.8.
* Attempt to properly detect gettext [1]
* Add support for @<pre|post>[un]exec plist directives [2]
* Add support for the new @sample plist directive changes [2]
* Modify the text when checking for used OPTIONS [3]

PR:		204370 [1]
		204900 [2]
		204575 [3]
2015-12-19 21:16:07 +00:00

45 lines
1 KiB
Makefile

# Created by: Jun-ichiro itojun Hagino <itojun@itojun.org>
# $FreeBSD$
PORTNAME= portlint
PORTVERSION= 2.16.8
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= marcus@FreeBSD.org
COMMENT= Verifier for FreeBSD port directory
LICENSE= ITOJUN
LICENSE_NAME= Itojun License
LICENSE_TEXT= All rights reserved. Freely redistributable. Absolutely no warranty.
LICENSE_PERMS= auto-accept dist-mirror dist-sell pkg-mirror pkg-sell
NO_BUILD= yes
WRKSRC= ${WRKDIR}/src
USES= perl5 shebangfix
SHEBANG_FILES= *.pl
USE_PERL5= run
SRC= ${.CURDIR}/src
PLIST_FILES= bin/portlint \
man/man1/portlint.1.gz
PORTEXAMPLES= portlintgrep
OPTIONS_DEFINE= EXAMPLES
do-extract:
@${CP} -R ${SRC}/ ${WRKSRC}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/portlint.pl \
${STAGEDIR}${PREFIX}/bin/portlint
${INSTALL_MAN} ${WRKSRC}/portlint.1 \
${STAGEDIR}${MAN1PREFIX}/man/man1
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_SCRIPT} ${WRKSRC}/portlintgrep.pl \
${STAGEDIR}${EXAMPLESDIR}/portlintgrep
.include <bsd.port.mk>