blob: cd40303a290cb607753487f32a48ddce9f0391db (
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
|
# New ports collection makefile for: jad
# Date created: 27 September 2000
# Whom: Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
#
# $FreeBSD$
#
PORTNAME= jad
PORTVERSION= 1.5.8c
CATEGORIES= java devel
MASTER_SITES= http://www.varaneckas.com/sites/default/files/jad/
DISTNAME= jad158c.freebsd
MAINTAINER= ale@FreeBSD.org
COMMENT= A Java Decompiler
USE_ZIP= yes
NO_WRKSUBDIR= yes
NO_BUILD= yes
PLIST_FILES= bin/jad
PORTDOCS= *
ONLY_FOR_ARCHS= i386 amd64
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/jad ${PREFIX}/bin/
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/Readme.txt ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|