1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/x11-toolkits/irrlicht/Makefile
Niclas Zeising 4c46ca73d8 Add USES=xorg USES=gl, ports categories x
Add USES=xorg and USES=gl to ports in categories starting with 'x'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
2019-11-07 18:36:55 +00:00

54 lines
1.6 KiB
Makefile

# Created by: Simon Barner <barner@gmx.de>
# $FreeBSD$
PORTNAME= irrlicht
PORTVERSION= 1.8.4
PORTREVISION= 2
CATEGORIES= x11-toolkits graphics
MASTER_SITES= SF/${PORTNAME}/Irrlicht%20SDK/${PORTVERSION:R}/${PORTVERSION}/
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= High performance realtime 3D engine
LICENSE= ZLIB
LICENSE_FILE= ${WRKSRC}/readme.txt
LIB_DEPENDS= libpng.so:graphics/png
DOS2UNIX_GLOB= Makefile *.cpp *.h *.txt
USES= alias dos2unix gl gmake jpeg zip xorg
USE_GL= gl
USE_XORG= x11 xxf86vm
USE_LDCONFIG= yes
ALL_TARGET= sharedlib
PLIST_SUB= PORTVERSION=${PORTVERSION} SOVERSION=${PORTVERSION:R}
SUB_FILES= pkg-message
BUILD_WRKSRC= ${WRKSRC}/source/Irrlicht
INSTALL_WRKSRC= ${BUILD_WRKSRC}
EXAMPLEDIRS= 01.HelloWorld 02.Quake3Map 03.CustomSceneNode 04.Movement \
05.UserInterface 06.2DGraphics 07.Collision 08.SpecialFX \
09.Meshviewer 10.Shaders 11.PerPixelLighting \
12.TerrainRendering 13.RenderToTexture 15.LoadIrrFile Demo
OPTIONS_DEFINE= DEBUG EXAMPLES
DEBUG_MAKE_ENV_OFF= NDEBUG=1
post-patch:
@${REINPLACE_CMD} -e '/#define.*_IRR_USE_NON_SYSTEM_JPEG_LIB_/ d' \
-e '/#define.*_IRR_USE_NON_SYSTEM_LIB_PNG_/ d' \
-e '/#define.*_IRR_USE_NON_SYSTEM_ZLIB_/ d' \
-e '/#define.*_IRR_USE_NON_SYSTEM_BZLIB_/ d' \
-e '/#define.*_IRR_COMPILE_WITH_JOYSTICK_EVENTS_/ d' \
${WRKSRC}/include/IrrCompileConfig.h
post-install-EXAMPLES-on:
cd ${WRKSRC}/examples && ${COPYTREE_SHARE} "${EXAMPLEDIRS}" \
${STAGEDIR}${EXAMPLESDIR} \
"( -name Makefile -or -name *\.cpp -or -name *\.h )"
cd ${WRKSRC} && ${COPYTREE_SHARE} media ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>