329e3aac0e
vendors: Remove any reference to bsdjava and freebsd Java Vendors, as the both are outdated, have security issues and expired. Mark icedtea6-stubs as broken as it doesn't build with any of the left supported vendors. Switch tuxguitar to be able to use openjdk16 [1] Approved by: gahr [1]
34 lines
899 B
Makefile
34 lines
899 B
Makefile
# Created by: Brian Gardner <brian@experts-exchange.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= icedtea6-stubs
|
|
PORTVERSION= 1.6b
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= http://www.intricatesoftware.com/distfiles/
|
|
DISTNAME= jdk-7-icedtea-plugs-${PORTVERSION}
|
|
|
|
MAINTAINER= openjdk@getsnappy.com
|
|
COMMENT= IcedTea6 binary plugs for openjdk
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip
|
|
BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip
|
|
|
|
BROKEN= Does not build with any of the supported Java vendors
|
|
|
|
WRKSRC= ${WRKDIR}/jdk-7-icedtea-plugs
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VENDOR= openjdk
|
|
JAVA_VERSION= 1.6
|
|
USE_ANT= yes
|
|
|
|
pre-build:
|
|
cd ${WRKSRC} && ${UNZIP_CMD} -u src.zip
|
|
|
|
do-install:
|
|
${MKDIR} ${JAVAJARDIR}/jdk-7-icedtea-plugs/jre/lib/
|
|
${CP} ${WRKSRC}/jre/lib/rt-closed.jar ${JAVAJARDIR}/jdk-7-icedtea-plugs/jre/lib/
|
|
|
|
PLIST_FILES+= %%JAVAJARDIR%%/jdk-7-icedtea-plugs/jre/lib/rt-closed.jar
|
|
|
|
.include <bsd.port.mk>
|