mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
fbd0197639
- Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav
174 lines
4.5 KiB
Makefile
174 lines
4.5 KiB
Makefile
# New ports collection makefile for: worldofpadman
|
|
# Date created: 2008-01-12
|
|
# Whom: alepulver
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= worldofpadman
|
|
PORTVERSION= 1.2.20080621
|
|
PORTREVISION= 7
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://thilo.kickchat.com/download/:full \
|
|
http://btc3x6.che.uni-bayreuth.de/~tl/wop_final/:full \
|
|
ftp://ftp.snt.utwente.nl/pub/games/worldofpadman/linux/:full,update \
|
|
ftp://ftp.kickchat.com/wop/:update \
|
|
http://www.hessenfragger.de/uploads/:update \
|
|
${MASTER_SITE_LOCAL:S|$|alepulver/:source|}
|
|
DISTFILES= worldofpadman.run:full \
|
|
wop_patch_1_2.run:update \
|
|
${SRC_FILE}.tar.bz2:source
|
|
EXTRACT_ONLY= worldofpadman.run \
|
|
wop_patch_1_2.run
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= World of Padman (WoP) is an open source FPS game
|
|
|
|
USE_MAKESELF= yes
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= release
|
|
NO_PACKAGE= package will be ~600MB; set FORCE_PACKAGE if you really want it
|
|
|
|
OPTIONS= CLIENT "Build client" on \
|
|
CURL "Enable curl support" on \
|
|
CURL_DLOPEN "Enable dynamic loading of curl" on \
|
|
GAMELIBS "Build game libraries (when not mandatory)" off \
|
|
DEDICATED "Build dedicated server" on \
|
|
MP3 "Enable MP3 support" off \
|
|
OPENAL "Enable OpenAL (3D sound) support" off \
|
|
OPENAL_DLOPEN "Enable dynamic loading of OpenAL" off \
|
|
OPTIMIZED_CFLAGS "Enable compilation optimizations" on \
|
|
SMP "Build SMP (threaded) client" on \
|
|
VORBIS "Enable Ogg Vorbis codec support" on
|
|
|
|
MAKE_ENV= DEFAULT_BASEDIR="${DATADIR}" PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
|
|
VM_ARCHS= amd64 i386 powerpc
|
|
SRC_FILE= ${PORTNAME}-${PORTVERSION}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITHOUT_CLIENT) && defined(WITHOUT_DEDICATED) && \
|
|
defined(WITHOUT_SMP)
|
|
IGNORE= needs at least one of CLIENT, DEDICATED and SMP options
|
|
.endif
|
|
|
|
.for i in ${ARCH}
|
|
. if ${VM_ARCHS:M${i}} != ""
|
|
HAVE_VM_COMPILED= yes
|
|
. endif
|
|
.endfor
|
|
|
|
.if defined(HAVE_VM_COMPILED)
|
|
MAKE_ENV+= HAVE_VM_COMPILED=true
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_CLIENT) || !defined(WITHOUT_SMP)
|
|
# curl
|
|
. if defined(WITH_CURL)
|
|
LIB_DEPENDS+= curl.6:${PORTSDIR}/ftp/curl
|
|
MAKE_ENV+= USE_CURL=1
|
|
. if defined(WITH_CURL_DLOPEN)
|
|
MAKE_ENV+= USE_CURL_DLOPEN=1
|
|
. endif
|
|
. endif
|
|
# OpenAL
|
|
. if defined(WITH_OPENAL)
|
|
USE_OPENAL= al
|
|
MAKE_ENV+= USE_OPENAL=1
|
|
. if defined(WITH_OPENAL_DLOPEN)
|
|
MAKE_ENV+= USE_OPENAL_DLOPEN=1
|
|
. endif
|
|
. endif
|
|
# SDL
|
|
USE_SDL= sdl
|
|
# Vorbis
|
|
. if defined(WITH_VORBIS)
|
|
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis
|
|
MAKE_ENV+= USE_CODEC_VORBIS=1
|
|
. endif
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_CLIENT)
|
|
MAKE_ENV+= BUILD_CLIENT=1
|
|
PLIST_SUB+= CLIENT=""
|
|
Q3BIN+= wop
|
|
.else
|
|
PLIST_SUB+= CLIENT="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_DEDICATED)
|
|
MAKE_ENV+= BUILD_SERVER=1
|
|
PLIST_SUB+= DEDICATED=""
|
|
Q3BIN+= wopded
|
|
.else
|
|
PLIST_SUB+= DEDICATED="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_GAMELIBS) || !defined(HAVE_VM_COMPILED)
|
|
MAKE_ENV+= BUILD_GAME_SO=1
|
|
PLIST_SUB+= GAMELIBS=""
|
|
.else
|
|
PLIST_SUB+= GAMELIBS="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_MP3)
|
|
LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad
|
|
MAKE_ENV+= USE_CODEC_MP3=1
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_OPTIMIZED_CFLAGS)
|
|
MAKE_ENV+= USE_OPTIMIZED_CFLAGS=1
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_SMP)
|
|
MAKE_ENV+= BUILD_CLIENT_SMP=1
|
|
PLIST_SUB+= SMP=""
|
|
Q3BIN+= wop-smp
|
|
.else
|
|
PLIST_SUB+= SMP="@comment "
|
|
.endif
|
|
|
|
post-extract:
|
|
@${TAR} jxf ${DISTDIR}/${SRC_FILE}.tar.bz2 -C ${WRKDIR}
|
|
@${MKDIR} ${WRKDIR}/wop
|
|
.for f in wop-data wop-data-1.2 extras
|
|
@cd ${WRKDIR} && ${TAR} xf ${f}.tar -C wop
|
|
.endfor
|
|
@cd ${WRKDIR} && ${TAR} xf readme.tar
|
|
|
|
post-patch:
|
|
# Do not log debug output of bots (can be enabled with "homedir"/"gamedir").
|
|
@${REINPLACE_CMD} -e 's|"botlib\.log"|"/dev/null"|' \
|
|
${WRKSRC}/code/botlib/be_interface.c
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}/wop
|
|
${CP} -r ${WRKDIR}/wop/* ${DATADIR}/wop
|
|
${INSTALL_DATA} ${WRKDIR}/wop.png \
|
|
${PREFIX}/share/pixmaps/${PORTNAME}.png
|
|
.for bin in ${Q3BIN}
|
|
# Rename wop* -> worldofpadman* to avoid conflicts with games/wop.
|
|
${INSTALL_PROGRAM} ${WRKSRC}/build/release/${bin} \
|
|
${PREFIX}/bin/${bin:S/wop/${PORTNAME}/}
|
|
.endfor
|
|
.if defined(WITH_GAMELIBS) || !defined(HAVE_VM_COMPILED)
|
|
${INSTALL_PROGRAM} ${WRKSRC}/build/release/baseq3/*.so ${DATADIR}/wop
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${CP} -r ${WRKDIR}/readme/* ${DOCSDIR}
|
|
.endif
|
|
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
|
|
|
|
maint-gen-distfile:
|
|
@if [ -f ${DISTDIR}/${SRC_FILE}.tar.bz2 ]; then \
|
|
${ECHO_CMD} "ERROR: the distfile already exists."; \
|
|
${FALSE}; \
|
|
fi
|
|
svn export https://wop-engine.svn.sourceforge.net/svnroot/wop-engine/trunk ${SRC_FILE}
|
|
tar cjf ${DISTDIR}/${SRC_FILE}.tar.bz2 ${SRC_FILE}
|
|
${RM} -rf ${SRC_FILE}
|
|
|
|
.include <bsd.port.post.mk>
|