Files
ports/graphics/jogl/Makefile
T
Tijl Coosemans b6ec06f079 */*: Use C.UTF-8 locale
Ports 02f27a83b4 fixed the ports tree to the C locale so it would work
correctly in environments where users use a locale that isn't compatible
with the C locale, e.g. xx_YY.UTF-8 where [A-Z] includes more than just
upper case letters.  USE_LOCALE was introduced to let ports use another
locale if they needed it.  The C.UTF-8 locale was created later on to be
mostly compatible with the C locale.

Switch the ports tree locale to C.UTF-8 and remove USE_LOCALE.  The
world has moved to Unicode so all ports either require it or know how to
build correctly in a Unicode environment.

PR:		295945
Exp-run by:	antoine
2026-06-30 22:03:57 +02:00

96 lines
2.6 KiB
Makefile

PORTNAME= jogl
PORTVERSION= 1.1.1
PORTREVISION= 13
CATEGORIES= graphics devel java
MASTER_SITES= http://download.java.net/media/jogl/builds/archive/jsr-231-1.1.1/
EXTRACT_SUFX= -src.zip
MAINTAINER= peterj@FreeBSD.org
COMMENT= Java bindings for OpenGL
WWW= https://jogl.dev.java.net/
LIB_DEPENDS= libdrm.so:graphics/libdrm
BUILD_DEPENDS= ${JAVALIBDIR}/antlr.jar:devel/antlr
NO_WRKSUBDIR= yes
DOCSDIR= ${JAVASHAREDIR}/${PORTNAME}
ALL_TARGET= all
# Java currently only supports i386 and amd64. Supporting additional
# architectures will need patches to at least
# gluegen/src/java/com/sun/gluegen/StructLayout.java
# gluegen/src/java/com/sun/gluegen/runtime/CPU.java
# gluegen/make/gluegen-cpptasks.xml
# jogl/make/build.xml
ONLY_FOR_ARCHS= i386 amd64
USES= gl java:ant,run xorg zip
USE_XORG= x11 xau xdamage xdmcp xext xfixes xorgproto xt xxf86vm
USE_GL= gl
USE_LDCONFIG= yes
# gluegen/src/java/net/highteq/nativetaglet/NativeTaglet.java:3: error: package com.sun.tools.doclets does not exist
JAVA_VERSION= 8
NO_SHLIB_REQUIRES_GLOB= libjawt.so libjvm.so
BUILD_WRKSRC= ${WRKSRC}/jogl/make
BUILD_BINPATH= ${WRKSRC}/bin
MAKE_ENV+= PATH="${BUILD_BINPATH}:${PATH}"
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
ALL_TARGET+= javadoc
.endif
.include <bsd.port.pre.mk>
.if ${JAVA_PORT_VERSION:M*6*}
PLIST_SUB+= JDK6=""
PLIST_SUB+= JDK7="@comment "
.endif
.if ${JAVA_PORT_VERSION:M*7*}
PLIST_SUB+= JDK6="@comment "
PLIST_SUB+= JDK7=""
.endif
.if ${JAVA_PORT_VERSION:M*8*}
PLIST_SUB+= JDK6="@comment "
PLIST_SUB+= JDK7="@comment "
.endif
.if ${JAVA_PORT_VERSION:M*8*}
EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-build.xml
.endif
post-patch:
@${REINPLACE_CMD} -e 's|%%JAVALIBDIR%%|${JAVALIBDIR}|g' \
${WRKSRC}/gluegen/make/build.xml
@${REINPLACE_CMD} -e 's|%%JAVALIBDIR%%|${JAVALIBDIR}|g' \
-e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
${WRKSRC}/jogl/make/build.xml
pre-build:
${MKDIR} ${BUILD_BINPATH}
${SED} -e 's|%%CC%%|${CC}|' < ${FILESDIR}/gcc.in > \
${BUILD_BINPATH}/gcc
${CHMOD} 755 ${BUILD_BINPATH}/gcc
do-install:
${INSTALL_DATA} ${WRKSRC}/gluegen/build/obj/libgluegen-rt.so \
${WRKSRC}/jogl/build/obj/libjogl.so \
${WRKSRC}/jogl/build/obj/libjogl_awt.so ${STAGEDIR}${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/gluegen/build/gluegen-rt.jar \
${WRKSRC}/jogl/build/jogl.jar ${STAGEDIR}${JAVAJARDIR}
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/jogl/doc/userguide/index.html \
${STAGEDIR}${DOCSDIR}/UserGuide.html
cd ${BUILD_WRKSRC}/../javadoc_public && \
${FIND} . -print | ${CPIO} -pdm ${STAGEDIR}${DOCSDIR}
.include <bsd.port.post.mk>