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
38 lines
1,023 B
Makefile
38 lines
1,023 B
Makefile
# New ports collection makefile for: beepcore-java
|
|
# Date created: 14 May 2002
|
|
# Whom: Kimura Fuyuki <fuyuki@mj.0038.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= beepcore
|
|
PORTVERSION= 0.9.08
|
|
PORTREVISION= 3
|
|
CATEGORIES= net java
|
|
MASTER_SITES= SF/${PORTNAME}-java/${PORTNAME}/${PORTVERSION}
|
|
PKGNAMEPREFIX= java-
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= araujo@FreeBSD.org
|
|
COMMENT= An implementation of BEEP core and BEEP mapping for TCP in Java
|
|
|
|
RUN_DEPENDS= ${JAVALIBDIR}/xercesImpl.jar:${PORTSDIR}/textproc/xerces-j
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.5+
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/lib/beep*.jar ${JAVAJARDIR}
|
|
cd ${WRKSRC}/example \
|
|
&& ${FIND} -s . -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} \; \
|
|
&& ${FIND} -s . -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} \;
|
|
${INSTALL_DATA} ${WRKSRC}/lib/example.jar ${EXAMPLESDIR}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.txt ${WRKSRC}/*.htm ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|