blob: af1951f13d4d0e88a203564772228b5c4738ac81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# New ports collection makefile for: portlint
# Version required: (self contained)
# Date created: 13 Jun 1997
# Whom: Jun-ichiro itojun Hagino <itojun@itojun.org>
#
# $FreeBSD$
#
PORTNAME= portlint
PORTVERSION= 2.1.3
CATEGORIES= devel
DISTFILES= # empty
MAINTAINER= mharo@FreeBSD.org
NO_BUILD= yes
NO_CHECKSUM= yes
NO_WRKSUBDIR= yes
SRC= ${.CURDIR}/src
MAN1= portlint.1
# didn't use post/pre-fetch because of some weird error where the message
# shows up twice
pre-configure:
@${ECHO_MSG} "Warning: portlint does not yet support the PORTNAME/PORTVERSION Makefile format"
@sleep 2
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>
|