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)
90 lines
2.4 KiB
Makefile
90 lines
2.4 KiB
Makefile
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xpilot-ng
|
|
PORTVERSION= 4.7.3
|
|
PORTREVISION?= 3
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/xpilot/xpilot_ng/${PORTNAME}-${PORTVERSION}
|
|
PKGNAMESUFFIX?= -server
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT?= Enhanced version of XPilot (server program)
|
|
|
|
LICENSE= GPLv2 # or later
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -Wno-return-type
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
CONFIGURE_ARGS= --program-prefix=""
|
|
|
|
UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
PKGFILESUFFIX= ${PKGNAMESUFFIX:S/-/./}
|
|
DESCR= ${PKGDIR}/pkg-descr${PKGFILESUFFIX}
|
|
PLIST= ${PKGDIR}/pkg-plist${PKGFILESUFFIX}
|
|
|
|
.if ${PKGNAMESUFFIX} == "-server"
|
|
CONFIGURE_ARGS+=--disable-replay \
|
|
--disable-xp-mapedit \
|
|
--disable-x11-client \
|
|
--disable-sdl-client
|
|
.else # client
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -I${LOCALBASE}/include
|
|
|
|
DESKTOP_ENTRIES= "Xpilot-ng X11" "Xpilot game client program" \
|
|
"" "xpilot-ng-x11" "Game;ArcadeGame;" false \
|
|
"Xpilot-ng Map Editor" "Xpilot Map Editor" \
|
|
"" "xpilot-ng-xp-mapedit" "Game;ArcadeGame;" false
|
|
|
|
OPTIONS_DEFINE= SDL SOUND
|
|
OPTIONS_DEFAULT= SDL
|
|
OPTIONS_SUB= yes
|
|
|
|
SOUND_DESC= Enable sound support
|
|
SOUND_CONFIGURE_ENABLE= sound
|
|
SOUND_USES= openal:al,alut
|
|
|
|
SDL_CONFIGURE_ENABLE= sdl-client
|
|
SDL_USE= SDL=image,sdl,ttf GL=yes
|
|
.endif
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PKGNAMESUFFIX} == "-server"
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|xpilot-ng-sdl\.man||; \
|
|
s|xpilot-ng-x11\.man||; \
|
|
s|xpilot-ng-replay\.man||; \
|
|
s|xpilot-ng-xp-mapedit\.man||' ${WRKSRC}/doc/man/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's| fonts||; s| textures||; s| shipshapes\.txt||' \
|
|
${WRKSRC}/lib/Makefile.in
|
|
.else # client
|
|
.if ${PORT_OPTIONS:MSDL}
|
|
DESKTOP_ENTRIES+= "Xpilot-ng SDL" "Xpilot game client program" \
|
|
"" "xpilot-ng-sdl" "Game;ArcadeGame;" false
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|mapconvert\.py||' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|xpilot-ng-server\.man||' \
|
|
${WRKSRC}/doc/man/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
's| maps||; s|defaults\.txt password\.txt robots\.txt||' \
|
|
${WRKSRC}/lib/Makefile.in
|
|
@${REINPLACE_CMD} -e 's| server||' ${WRKSRC}/src/Makefile.in
|
|
.if empty(PORT_OPTIONS:MSDL)
|
|
@${REINPLACE_CMD} -e 's|xpilot-ng-sdl\.man||' \
|
|
${WRKSRC}/doc/man/Makefile.in
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|