diff options
author | danfe <danfe@FreeBSD.org> | 2013-10-08 23:59:56 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2013-10-08 23:59:56 +0800 |
commit | fdceda21686a47f4c0bc2feb7d2ca34e12cae33c (patch) | |
tree | f46ad5fb15b622277fc12afe265db06b0d665bad /games | |
parent | 8ec3587e98466c1b1c44252ade9d98ddf3431994 (diff) | |
download | freebsd-ports-gnome-fdceda21686a47f4c0bc2feb7d2ca34e12cae33c.tar.gz freebsd-ports-gnome-fdceda21686a47f4c0bc2feb7d2ca34e12cae33c.tar.zst freebsd-ports-gnome-fdceda21686a47f4c0bc2feb7d2ca34e12cae33c.zip |
- Remove hardcoded "gcc" in configure script to unbreak on -CURRENT
- Stagify; drop no longer needed MAKE_ARGS and post-install target
- Touch pkg-descr and slave port's COMMENT while I'm at them
Reported by: pkg-fallout
Diffstat (limited to 'games')
-rw-r--r-- | games/mvdsv/Makefile | 13 | ||||
-rw-r--r-- | games/mvdsv/pkg-descr | 2 | ||||
-rw-r--r-- | games/qwdtools/Makefile | 3 |
3 files changed, 4 insertions, 14 deletions
diff --git a/games/mvdsv/Makefile b/games/mvdsv/Makefile index 91699f815976..77a69da87180 100644 --- a/games/mvdsv/Makefile +++ b/games/mvdsv/Makefile @@ -17,7 +17,6 @@ USE_ZIP= yes HAS_CONFIGURE= yes CONFIGURE_ARGS= ${OPSYS} ${ARCH:C/.*(64)/\1/} -MAKE_ARGS= CC="${CC}" ALL_TARGET= ${PORTNAME} WRKSRC= ${WRKDIR}/mvdsv @@ -35,7 +34,6 @@ OPTIONS_DEFAULT+= KQUEUE KQUEUE_DESC= Kqueue support -NO_STAGE= yes .include <bsd.port.options.mk> .if ! ${PORT_OPTIONS:MKQUEUE} @@ -47,17 +45,10 @@ MAKE_ARGS+= -DWITHOUT_X86_ASM .endif post-patch: + @${REINPLACE_CMD} -e 's,gcc,${CC},' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's,^inline ,,' ${WRKSRC}/source/sv_sys_unix.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - -post-install: -# Checking for presence of ${PKGMESSAGE} explicitly does not work here -.if exists(${.CURDIR}/pkg-message) - @${ECHO_MSG} - @${CAT} ${PKGMESSAGE} - @${ECHO_MSG} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include <bsd.port.mk> diff --git a/games/mvdsv/pkg-descr b/games/mvdsv/pkg-descr index 470c3f6ca980..6074f9e9d1b6 100644 --- a/games/mvdsv/pkg-descr +++ b/games/mvdsv/pkg-descr @@ -2,6 +2,6 @@ MVDSV is popular QuakeWorld server with new amazing possibilities, most notably, of course, being multi-view demos. MVD demos are probably the biggest step in QuakeWorld since Qizmo release. MVDSV is also the best server to use with KTeams Pro deathmatch mod, and in fact is required -for latter's full functionality. +for the latter's full functionality. WWW: http://mvdsv.qw-dev.net/ diff --git a/games/qwdtools/Makefile b/games/qwdtools/Makefile index 2cbda8870a58..1b60c07c30ec 100644 --- a/games/qwdtools/Makefile +++ b/games/qwdtools/Makefile @@ -3,11 +3,10 @@ PORTNAME= qwdtools CATEGORIES= games converters -COMMENT= Converts QuakeWorld demos from QWD format to MVD format +COMMENT= Convert QuakeWorld demos from QWD format to MVD format DESCR= ${.CURDIR}/pkg-descr PKGMESSAGE= /nonexistent MASTERDIR= ${.CURDIR}/../mvdsv -NO_STAGE= yes .include "${MASTERDIR}/Makefile" |