8d3d318a69
portlint port passing portlint) New portlint features: * Allow pkg/COMMENT to start with a digit * Warn about .la files in pkg/PLIST * Better support for comments in the Makefile - fixes the section off by 1 error (DISTNAME needs to exist, and so on, when it does) * don't report "FATAL: no MAINTAINER listed in Makefile" when it does exist * other random minor bug fixes
30 lines
557 B
Makefile
30 lines
557 B
Makefile
# New ports collection makefile for: portlint
|
|
# Version required: (self contained)
|
|
# Date created: 13 Jun 1997
|
|
# Whom: Jun-ichiro itojun Hagino <itojun@itojun.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= portlint-2.1.2
|
|
CATEGORIES= devel
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= mharo@FreeBSD.org
|
|
|
|
NO_BUILD= yes
|
|
NO_CHECKSUM= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
SRC= ${.CURDIR}/src
|
|
|
|
MAN1= portlint.1
|
|
|
|
do-fetch:
|
|
@${DO_NADA}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${SRC}/portlint.pl ${PREFIX}/bin/portlint
|
|
${INSTALL_MAN} ${SRC}/portlint.1 ${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|