06e6677793
remove support for them from bsd.java.mk. As Jikes is not available in Java 1.5 or higher, remove it from bsd.java.mk too (suggested by hq@) and from the ports which used it (only occurences were USE_JIKES=no). Support for the Blackdown VM is also removed, as it is not available in Java 1.5 and higher. Also remove the mapping from Java 1.1-1.4 to Java 1.5+ in bsd.java.mk to detect old, broken ports; therefore bump the minimal value of JAVA_VERSION to 1.5. While here, replace static values of JAVA_VERSION in files/*.in by %%JAVA_VERSION%% . PR: ports/158969 Submitted by: rene Tested on: pointyhat-west -exp
37 lines
763 B
Makefile
37 lines
763 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= java@FreeBSD.org
|
|
COMMENT= A library for generating Java bytecode
|
|
|
|
NO_BUILD= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.5+
|
|
|
|
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>
|