mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
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
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# Ports collection Makefile for: Castor
|
|
# Date created: 2005/05/12
|
|
# Whom: Adam VanderHook <acidos@bandwidth-junkies.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= castor
|
|
PORTVERSION= 1.3.2
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= http://dist.codehaus.org/castor/${PORTVERSION}/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= Data binding for XML (JAXB) and SQL database (JDO)
|
|
|
|
LICENSE= ASL
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.5+
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}-anttasks.jar \
|
|
%%JAVAJARDIR%%/${PORTNAME}-codegen.jar \
|
|
%%JAVAJARDIR%%/${PORTNAME}-core.jar \
|
|
%%JAVAJARDIR%%/${PORTNAME}-ddlgen.jar \
|
|
%%JAVAJARDIR%%/${PORTNAME}-xml-schema.jar \
|
|
%%JAVAJARDIR%%/${PORTNAME}-xml.jar \
|
|
%%JAVAJARDIR%%/${PORTNAME}.jar
|
|
|
|
PORTDOCS= *.html *.txt *.css *.dtd *.xsd *.pdf \
|
|
ora-mar-2k images rss
|
|
|
|
do-install:
|
|
.for f in ${PLIST_FILES:T:R}
|
|
@${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${f}.jar..."
|
|
@${INSTALL_DATA} \
|
|
${WRKSRC}/${f:S/tor/tor-${PORTVERSION}/}.jar \
|
|
${JAVAJARDIR}/${f}.jar
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|