5916aa48db
* Do not warn on direct use of "false" if it is found in DESKTOP_ENTRIES. [1] * Make sure the DESKTOP_ENTRIES true/false parameter does not include quotes. * Remove an unreferenced variable dereference. [2] * Add some additional variables to avoid explicit command use checks. [3] PR: 185086 [1] 185225 [2] 185110 [3]
44 lines
916 B
Makefile
44 lines
916 B
Makefile
# Created by: Jun-ichiro itojun Hagino <itojun@itojun.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= portlint
|
|
PORTVERSION= 2.14.8
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= marcus@FreeBSD.org
|
|
COMMENT= Verifier for FreeBSD port directory
|
|
|
|
LICENSE= BSD
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/src
|
|
USES= perl5
|
|
USE_PERL5= run
|
|
|
|
SRC= ${.CURDIR}/src
|
|
|
|
PLIST_FILES= bin/portlint \
|
|
man/man1/portlint.1.gz
|
|
|
|
PORTEXAMPLES= portlintgrep
|
|
|
|
pre-patch:
|
|
@${CP} -R ${SRC} ${WRKDIR}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|' \
|
|
${WRKSRC}/portlint.pl \
|
|
${WRKSRC}/portlintgrep.pl
|
|
|
|
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>
|