mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
5005b67362
OPTIONS_DEFINE. This policy has been implemented only recently that's why we have many ports violating this policy. This patch adds the default options specified in the Porter's Handbook to OPTIONS_DEFINE where they are being used. Ports maintained by gnome@FreeBSD.org, kde@FreeBSD.org and x11@FreeBSD.org have been excluded. Approved by: portmgr (bapt)
69 lines
1.6 KiB
Makefile
69 lines
1.6 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
|
|
|
|
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= *
|
|
|
|
NO_STAGE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s/gcc/${CC}/g" \
|
|
${WRKSRC}/j3d-core/src/native/ogl/build-freebsd.xml
|
|
|
|
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>
|