mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +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
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: hsqldb
|
|
# Date created: 14 Feb 2006
|
|
# Whom: Michael Winking <mwfp@foldl.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hsqldb
|
|
PORTVERSION= 1.8.1.3
|
|
CATEGORIES= databases java
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}_1_8_1
|
|
DISTNAME= hsqldb_${PORTVERSION:S/./_/g}
|
|
#EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= wenheping@gmail.com
|
|
COMMENT= An embeddable SQL database written in Java
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.5+
|
|
USE_ANT= yes
|
|
USE_ZIP= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
BUILD_WRKSRC= ${WRKSRC}/build
|
|
ALL_TARGET= hsqldb hsqljdbc
|
|
|
|
do-install:
|
|
@${ECHO_MSG} -n ">> Installing JAR files to ${JAVAJARDIR}..."
|
|
@${INSTALL_DATA} ${WRKSRC}/lib/hsqldb.jar \
|
|
${JAVAJARDIR}/hsqldb.jar
|
|
@${INSTALL_DATA} ${WRKSRC}/lib/hsqljdbc.jar \
|
|
${JAVAJARDIR}/hsqljdbc.jar
|
|
@${ECHO_MSG} " [DONE]"
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_MSG} -n ">> Installing DOC files to ${DOCSDIR}..."
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}
|
|
cd ${WRKSRC}/doc \
|
|
&& ${FIND} . -type d -exec ${MKDIR} ${DOCSDIR}/\{} \; \
|
|
&& ${FIND} . -type f -exec ${INSTALL_DATA} \{} ${DOCSDIR}/\{} \;
|
|
@${ECHO_MSG} " [DONE]"
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|