mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
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]
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
# Created by: nork@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= java3d
|
|
PORTVERSION= 1.5.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= java graphics games devel
|
|
MASTER_SITES= https://sites.google.com/site/daemonwizard/
|
|
DISTNAME= java3d-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Provides API for creating and manipulation of 3D geometry
|
|
|
|
USE_BZIP2= yes
|
|
FETCH_ARGS= -Fpr
|
|
|
|
USE_JAVA= yes
|
|
USE_GL= gl
|
|
USE_XORG= xt
|
|
JAVA_VERSION= 1.6+
|
|
JAVA_VENDOR= openjdk
|
|
USE_ANT= yes
|
|
|
|
PLIST_SUB+= JAVA_HOME=${JAVA_HOME:S/^${PREFIX}\///} ARCH=${ARCH}
|
|
|
|
DOCSSRC= ${WRKSRC}/j3d-core/build/freebsd/javadocs/docs-public
|
|
PORTDOCS= *
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/vecmath && ${ANT} dist
|
|
cd ${WRKSRC}/j3d-core && ${ANT} -Dbuild.type=fcs -Dis${OPSYS}=yes -Dports.localbase=${LOCALBASE} jar-opt
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
cd ${WRKSRC}/j3d-core && ${ANT} -Dbuild.type=fcs -Dis${OPSYS}=yes docs-public
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_DATA} \
|
|
${WRKSRC}/vecmath/dist/lib/ext/vecmath.jar \
|
|
${WRKSRC}/j3d-core/build/default/opt/lib/ext/j3dcore.jar \
|
|
${WRKSRC}/j3d-core/build/default/opt/lib/ext/j3dutils.jar \
|
|
${JAVA_HOME}/jre/lib/ext
|
|
${INSTALL} \
|
|
${WRKSRC}/j3d-core/build/default/opt/native/libj3dcore-ogl.so \
|
|
${JAVA_HOME}/jre/lib/${ARCH}
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
cd ${DOCSSRC} && ${COPYTREE_SHARE} \* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|