mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
60945f0277
the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine)
104 lines
2.6 KiB
Makefile
104 lines
2.6 KiB
Makefile
# Created by: thierry@pompo.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= torcs
|
|
DISTVERSION= 1.3.6
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/all-in-one/${PORTVERSION}
|
|
|
|
MAINTAINER= rene@FreeBSD.org
|
|
COMMENT= The Open Racing Car Simulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib
|
|
LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \
|
|
libvorbis.so:${PORTSDIR}/audio/libvorbis
|
|
RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
|
|
|
|
USES= cpe gmake openal:al,alut shebangfix tar:bzip2
|
|
CPE_VENDOR= bernhard_wymann
|
|
SHEBANG_FILES= src/tools/accc/accc.in src/tools/nfsperf/nfsperf.in \
|
|
src/tools/texmapper/texmapper.in src/tools/nfs2ac/nfs2ac.in \
|
|
src/tools/trackgen/trackgen.in \
|
|
src/modules/telemetry/telemetry.sh robotgen
|
|
USE_XORG= xrender xmu ice xext x11 xxf86vm xrandr
|
|
USE_GL= glut
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
ALL_TARGET= default
|
|
INSTALL_TARGET= install datainstall
|
|
INSTDIR= ${PREFIX}/share/games/${PORTNAME}
|
|
|
|
PORTDOCS= faq.html
|
|
|
|
BASH2FIX= src/linux/torcs.in Make-default.mk
|
|
|
|
STRIPFILES= drivers/berniw/berniw.so \
|
|
drivers/berniw2/berniw2.so \
|
|
drivers/berniw3/berniw3.so \
|
|
drivers/bt/bt.so \
|
|
drivers/damned/damned.so \
|
|
drivers/human/human.so \
|
|
drivers/inferno/inferno.so \
|
|
drivers/inferno2/inferno2.so \
|
|
drivers/lliaw/lliaw.so \
|
|
drivers/olethros/olethros.so \
|
|
drivers/sparkle/sparkle.so \
|
|
drivers/tita/tita.so \
|
|
lib/libclient.so \
|
|
lib/libconfscreens.so \
|
|
lib/liblearning.so \
|
|
lib/libmusicplayer.so \
|
|
lib/libraceengine.so \
|
|
lib/libracescreens.so \
|
|
lib/librobottools.so \
|
|
lib/libtgf.so \
|
|
lib/libtgfclient.so \
|
|
lib/libtxml.so \
|
|
modules/graphic/ssggraph.so \
|
|
modules/simu/simuv2.so \
|
|
modules/telemetry/telemetry.so \
|
|
modules/track/track.so
|
|
|
|
DESKTOP_ENTRIES= "TORCS" \
|
|
"The Open Racing Car Simulator" \
|
|
"${INSTDIR}/Ticon.png" \
|
|
"torcs" \
|
|
"Game;Simulation;" \
|
|
false
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
EMPTYDIR= champ dtmrace endrace ncrace practice quickrace
|
|
|
|
# shebangfix does not catch these two (not at top of file):
|
|
post-patch:
|
|
.for FILE in ${BASH2FIX}
|
|
@${REINPLACE_CMD} -E -e "s|/bin/bash|${LOCALBASE}/bin/bash|" \
|
|
${WRKSRC}/${FILE}
|
|
.endfor
|
|
|
|
post-build:
|
|
.for FILE in ${STRIPFILES}
|
|
${STRIP_CMD} ${WRKSRC}/export/${FILE}
|
|
.endfor
|
|
|
|
pre-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/games
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/faq/|} ${STAGEDIR}${DOCSDIR}
|
|
.for ed in ${EMPTYDIR}
|
|
${TOUCH} ${STAGEDIR}${INSTDIR}/results/${ed}/.keep_me
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|