b7f05445c0
It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
158 lines
4.1 KiB
Makefile
158 lines
4.1 KiB
Makefile
PORTNAME= worldofpadman
|
|
PORTVERSION= 1.2.20080621
|
|
PORTREVISION= 15
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.snt.utwente.nl/pub/games/worldofpadman/linux/:full,update \
|
|
LOCAL/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= Open source FPS game inspired by the Padman comic strip
|
|
WWW= http://www.worldofpadman.com/
|
|
|
|
USES= gmake makeself
|
|
MAKE_ENV= DEFAULT_BASEDIR="${DATADIR}" PTHREAD_LIBS="-lpthread"
|
|
ALL_TARGET= release
|
|
|
|
SRC_FILE= ${PORTNAME}-${PORTVERSION}
|
|
VM_ARCHS= amd64 i386 powerpc powerpc64
|
|
|
|
PLIST_FILES= share/pixmaps/worldofpadman.png
|
|
PORTDOCS= *
|
|
PORTDATA= *
|
|
|
|
OPTIONS_DEFINE= CURL CURL_DLOPEN GAMELIBS MP3 OPENAL OPENAL_DLOPEN \
|
|
OPTIMIZED_CFLAGS VORBIS DOCS
|
|
OPTIONS_MULTI= FLAVOR
|
|
OPTIONS_MULTI_FLAVOR= CLIENT SERVER SMP_CLIENT
|
|
OPTIONS_DEFAULT= CLIENT CURL CURL_DLOPEN SERVER OPTIMIZED_CFLAGS \
|
|
VORBIS SMP_CLIENT
|
|
OPTIONS_SUB= yes
|
|
|
|
FLAVOR_DESC= Clients and servers
|
|
CLIENT_DESC= Build client
|
|
CURL_DLOPEN_DESC= Enable dynamic loading of cURL
|
|
SERVER_DESC= Build dedicated server
|
|
GAMELIBS_DESC= Force building game libraries
|
|
OPENAL_DLOPEN_DESC= Enable dynamic loading of OpenAL
|
|
SMP_CLIENT_DESC= Build SMP (threaded) client
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.for arch in ${ARCH}
|
|
. if ${VM_ARCHS:M${arch}} != ""
|
|
HAVE_VM_COMPILED= yes
|
|
. endif
|
|
.endfor
|
|
|
|
.if defined(HAVE_VM_COMPILED)
|
|
MAKE_ENV+= HAVE_VM_COMPILED=true
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCLIENT} || ${PORT_OPTIONS:MSMP_CLIENT}
|
|
# cURL
|
|
. if ${PORT_OPTIONS:MCURL}
|
|
LIB_DEPENDS+= libcurl.so:ftp/curl
|
|
MAKE_ENV+= USE_CURL=1
|
|
. if ${PORT_OPTIONS:MCURL_DLOPEN}
|
|
MAKE_ENV+= USE_CURL_DLOPEN=1
|
|
. endif
|
|
. endif
|
|
# OpenAL
|
|
. if ${PORT_OPTIONS:MOPENAL}
|
|
USES+= openal:al
|
|
MAKE_ENV+= USE_OPENAL=1
|
|
. if ${PORT_OPTIONS:MOPENAL_DLOPEN}
|
|
MAKE_ENV+= USE_OPENAL_DLOPEN=1
|
|
. endif
|
|
. endif
|
|
# SDL
|
|
USES+= gl sdl
|
|
USE_GL= glu
|
|
USE_SDL= sdl
|
|
# Vorbis
|
|
. if ${PORT_OPTIONS:MVORBIS}
|
|
LIB_DEPENDS+= libvorbis.so:audio/libvorbis
|
|
MAKE_ENV+= USE_CODEC_VORBIS=1
|
|
. endif
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCLIENT}
|
|
MAKE_ENV+= BUILD_CLIENT=1
|
|
WOPBIN+= wop
|
|
PLIST_FILES+= bin/worldofpadman
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSERVER}
|
|
MAKE_ENV+= BUILD_SERVER=1
|
|
WOPBIN+= wopded
|
|
PLIST_FILES+= bin/worldofpadmanded
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGAMELIBS} || !defined(HAVE_VM_COMPILED)
|
|
MAKE_ENV+= BUILD_GAME_SO=1
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMP3}
|
|
LIB_DEPENDS+= libmad.so:audio/libmad
|
|
MAKE_ENV+= USE_CODEC_MP3=1
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
|
|
MAKE_ENV+= USE_OPTIMIZED_CFLAGS=1
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSMP_CLIENT}
|
|
MAKE_ENV+= BUILD_CLIENT_SMP=1
|
|
WOPBIN+= wop-smp
|
|
PLIST_FILES+= bin/worldofpadman-smp
|
|
.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
|
|
@${REINPLACE_CMD} '/callMask/ s|static||' \
|
|
${WRKSRC}/code/qcommon/vm_x86.c
|
|
@${REINPLACE_CMD} 's|-falign-loops=2||; s|-falign-jumps=2||' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/wop
|
|
${CP} -a ${WRKDIR}/wop/* ${STAGEDIR}${DATADIR}/wop
|
|
${INSTALL_DATA} ${WRKDIR}/wop.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
|
|
.for bin in ${WOPBIN}
|
|
# Rename wop* -> worldofpadman* to avoid conflicts with `games/wop'
|
|
${INSTALL_PROGRAM} ${WRKSRC}/build/release/${bin} \
|
|
${STAGEDIR}${PREFIX}/bin/${bin:S/wop/${PORTNAME}/}
|
|
.endfor
|
|
.if ${PORT_OPTIONS:MGAMELIBS} || !defined(HAVE_VM_COMPILED)
|
|
${INSTALL_PROGRAM} ${WRKSRC}/build/release/baseq3/*.so \
|
|
${STAGEDIR}${DATADIR}/wop
|
|
.endif
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${CP} -a ${WRKDIR}/readme/* ${STAGEDIR}${DOCSDIR}
|
|
|
|
generate-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} -r ${SRC_FILE}
|
|
|
|
.include <bsd.port.mk>
|