1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/graphics/jogl/Makefile
Mark Linimon 06e6677793 Now that the Java 1.3 and Java 1.4 ports are deprecated and will expire soon,
remove support for them from bsd.java.mk.  As Jikes is not available in Java 1.5
or higher, remove it from bsd.java.mk too (suggested by hq@) and from the ports
which used it (only occurences were USE_JIKES=no).  Support for the Blackdown VM
is also removed, as it is not available in Java 1.5 and higher.

Also remove the mapping from Java 1.1-1.4 to Java 1.5+ in bsd.java.mk to detect
old, broken ports; therefore bump the minimal value of JAVA_VERSION to 1.5.
While here, replace static values of JAVA_VERSION in files/*.in by
%%JAVA_VERSION%% .

PR:		ports/158969
Submitted by:	rene
Tested on:	pointyhat-west -exp
2011-07-21 05:03:02 +00:00

75 lines
2.0 KiB
Makefile

# New ports collection makefile for: jogl
# Date created: 5 December 1994
# Whom: Peter Jeremy <peterjeremy@optushome.com.au>
#
# $FreeBSD$
#
PORTNAME= jogl
PORTVERSION= 1.1.1
PORTREVISION= 1
CATEGORIES= graphics devel java
MASTER_SITES=http://download.java.net/media/jogl/builds/archive/jsr-231-1.1.1/
EXTRACT_SUFX= -src.zip
MAINTAINER= peterjeremy@optushome.com.au
COMMENT= Java bindings for OpenGL
LIB_DEPENDS= drm.2:${PORTSDIR}/graphics/libdrm
BUILD_DEPENDS= java:${PORTSDIR}/java/javavmwrapper \
${JAVALIBDIR}/antlr.jar:${PORTSDIR}/devel/antlr
RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper
CONFLICTS= jogamp-jogl-*
NO_WRKSUBDIR= yes
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
ALL_TARGET= all
.if !defined(NOPORTDOCS)
ALL_TARGET+= javadoc
.endif
# 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
USE_XORG= x11 xau xdamage xdmcp xext xf86vidmodeproto xfixes xproto xt \
xxf86vm
USE_GL= gl
USE_ZIP= yes
USE_ANT= yes
USE_LDCONFIG= yes
USE_JAVA= yes
JAVA_VERSION= 1.5+
BUILD_WRKSRC= ${WRKSRC}/jogl/make
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
do-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/jogl/doc/userguide/index.html \
${DATADIR}/UserGuide.html
cd ${BUILD_WRKSRC}/../javadoc_public && \
${FIND} . -print | ${CPIO} -pdm ${DATADIR}
.endif
${INSTALL_DATA} ${WRKSRC}/gluegen/build/obj/libgluegen-rt.so \
${WRKSRC}/jogl/build/obj/libjogl.so \
${WRKSRC}/jogl/build/obj/libjogl_awt.so ${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/gluegen/build/gluegen-rt.jar \
${WRKSRC}/jogl/build/jogl.jar ${JAVAJARDIR}
.include <bsd.port.mk>