mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-31 05:41:08 +00:00
1f0ed457fd
- Propagate Make environment to Ant to use the correct JDK and not just the one that Ant was built with. PR: 173505 [1] Submitted by: James Raynard <james.raynard@pobox.com> [1] Patch by: Piotr Smyrak <piotr.smyrak@gmail.com> [1] Obtained from: https://launchpad.net/ubuntu/+source/java3d/1.5.2+dfsg-8 [1]
62 lines
1.5 KiB
Makefile
62 lines
1.5 KiB
Makefile
# Created by: nork@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= java3d
|
|
PORTVERSION= 1.5.2
|
|
PORTREVISION= 2
|
|
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 && ${SETENV} ${MAKE_ENV} ${ANT} dist
|
|
cd ${WRKSRC}/j3d-core \
|
|
&& ${SETENV} ${MAKE_ENV} ${ANT} -Dbuild.type=fcs \
|
|
-Dis${OPSYS}=yes \
|
|
-Dports.localbase=${LOCALBASE} \
|
|
jar-opt
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
cd ${WRKSRC}/j3d-core \
|
|
&& ${SETENV} ${MAKE_ENV} ${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>
|