* Check for duplicate distinfo items [1] * Remove vestiges of SVN [2] [2] Switch to using `git status` to determine if a file is under git version control. Also, PL_SVN_IGNORE has been renamed to PL_GIT_IGNORE. PR: 267168 [1] 267145 [2] Submitted by: rodrigo [1] Thanks to: pauamma for the `git status` command [2]
45 lines
1,008 B
Makefile
45 lines
1,008 B
Makefile
PORTNAME= portlint
|
|
PORTVERSION= 2.20.0
|
|
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_ARCH= yes
|
|
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
|
|
|
|
do-install-EXAMPLES-on:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/portlintgrep.pl \
|
|
${STAGEDIR}${EXAMPLESDIR}/portlintgrep
|
|
|
|
.include <bsd.port.mk>
|