blob: 1addcf09b8d947430677e4b02378c61858473a60 (
plain)
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
38
|
# New ports collection makefile for: jlint
# Date created: June 2, 2001
# Whom: Ernst de Haan <znerd@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= jlint
PORTVERSION= 3.1.2
CATEGORIES= java devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Java program analyzer and checker
PLIST_FILES= bin/jlint \
bin/jlint.sh \
bin/antic
.if !defined(NOPORTDOCS)
PORTDOCS= manual.pdf
.endif
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e '1s,/bin/bash,/bin/sh,' ${WRKSRC}/jlint.sh
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/jlint ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/antic ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/jlint.sh ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/manual.pdf ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|