freebsd-ports/ports-mgmt/portlint/Makefile
Akinori MUSHA 2e9b5b7363 Update to version 2.3.
- Conform to the new port layout, finally.

- Use COMMENT, DESCR, PLIST, PKGINSTALL, PKGDEINSTALL, PKGREQ,
PKGMESSAGE, SCRIPTDIR and PATCHDIR instead of hardcoded file/directory
names. (suggested by will)

- Fix maxchars checker that has been broken.

- Fix "use ldconfig with ||/usr/bin/true" checker. (patch submitted by
sobomax)

- Fix "include the country code in the module alias name" warning.
Besides, "country code" is corrected to "language code".

- Add french and hebrew to the list of lang-specific categories.

- Properly omit the checks against PORTNAME section etc. when the
testee is a slave port.

- Add "INSTALLS_SHLIB may be missing" checker which searches pkg-plist
for `*.so' and `*.so.<nn>'.

- Make it dynamically read bsd.sites.mk so that we no longer need to
keep it always in sync with bsd.sites.mk.  It now should recognize
`/%SUBDIR%/' part too.

- Change `split(/\s+/, "blah blah blah")' to `qw(blah blah blah)'.

- Add some dummy comments that prevent Emacs' CPerl mode from
confusing.

- Add a condition "unless this is a master port" to the warnings that
are specific to master ports, because currently we can't know if a
port is a master port.

Reviewed by:	mharo (MAINTAINER)
2000-12-12 14:24:12 +00:00

33 lines
593 B
Makefile

# New ports collection makefile for: portlint
# Date created: 13 Jun 1997
# Whom: Jun-ichiro itojun Hagino <itojun@itojun.org>
#
# $FreeBSD$
#
# This port is self contained in the src directory.
#
PORTNAME= portlint
PORTVERSION= 2.3
CATEGORIES= devel
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= mharo@FreeBSD.org
NO_BUILD= yes
NO_WRKSUBDIR= yes
USE_PERL5= 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>