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
39 lines
963 B
Makefile
39 lines
963 B
Makefile
# Ports collection makefile for: ganttproject
|
|
# Date created: Jul 6, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ganttproject
|
|
DISTVERSION= 2.1-m3
|
|
CATEGORIES= deskutils java
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-development/Loire%20M3
|
|
EXTRACT_SUFX= -src.zip
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Plan projects using a Gantt chart
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}-src/${PORTNAME}-builder
|
|
|
|
USE_ZIP= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.5+
|
|
USE_ANT= yes
|
|
|
|
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
|
CPIOARGS= --quiet -pdum -R
|
|
|
|
SUB_FILES= ${PORTNAME}.sh
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
@${MKDIR} -m 0755 -p ${DATADIR}
|
|
(cd ${WRKSRC}/dist-bin && \
|
|
${CP} ${WRKSRC}/ganttproject-eclipsito-config.xml ${WRKSRC}/dist-bin && \
|
|
${FIND} . | ${GREP} -v './.*\.\(sh\|bat\|command\)' | \
|
|
${CPIO} ${CPIOARGS} ${LIBOWN}:${LIBGRP} ${DATADIR})
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.post.mk>
|