mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
38 lines
762 B
Makefile
38 lines
762 B
Makefile
# Ports collection makefile for: jakarta-bcel
|
|
# Date created: 6 May 2002
|
|
# Whom: des
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bcel
|
|
PORTVERSION= 5.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= ${MASTER_SITE_APACHE_JAKARTA}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/binaries
|
|
PKGNAMEPREFIX= jakarta-
|
|
|
|
MAINTAINER= des@FreeBSD.org
|
|
COMMENT= A library for generating Java bytecode
|
|
|
|
NO_BUILD= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.2+
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/bcel.jar
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.jar \
|
|
${JAVAJARDIR}/${PORTNAME}.jar
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC}/docs && ${FIND} . -print | \
|
|
${CPIO} -pdmu -R${DOCOWN}:${DOCGRP} ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|