mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
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= 1
|
|
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>
|