mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +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
40 lines
1.0 KiB
Makefile
40 lines
1.0 KiB
Makefile
# New ports collection makefile for: eclipse support for Jad
|
|
# Date created: Tue Aug 15 21:22:20 UTC 2006
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jad
|
|
PORTVERSION= 3.3.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= SF/${PORTNAME}clipse/${PORTNAME}clipse3.3/${PORTVERSION}%20%28for%20Eclipse%20_%3D3.3M6%29
|
|
PKGNAMEPREFIX= eclipse-
|
|
DISTNAME= net.sf.jadclipse_${PORTVERSION}
|
|
EXTRACT_SUFX= .jar
|
|
DIST_SUBDIR= eclipse
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= Jad Java decompiler plugin for the Eclipse IDE
|
|
|
|
RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse \
|
|
jad:${PORTSDIR}/java/jad
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.5+
|
|
|
|
PLIST_FILES= share/eclipse/dropins/${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
post-extract:
|
|
@${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} ${WRKSRC}
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/lib/eclipse/plugins
|
|
@${INSTALL_DATA} ${WRKSRC}/${DISTNAME}${EXTRACT_SUFX} ${PREFIX}/share/eclipse/dropins
|
|
|
|
.include <bsd.port.mk>
|