diff options
author | makc <makc@FreeBSD.org> | 2014-02-13 21:52:14 +0800 |
---|---|---|
committer | makc <makc@FreeBSD.org> | 2014-02-13 21:52:14 +0800 |
commit | 455cb15ea4578cd55ddf2e8e95580f2a9c50b766 (patch) | |
tree | 8098a30c5c1c1af887feb8cb2981e689ee14ef83 /games/ggz-sdl-games | |
parent | 32426c1f8e5bc8b35dee47ae1caa1ead9490aec6 (diff) | |
download | freebsd-ports-gnome-455cb15ea4578cd55ddf2e8e95580f2a9c50b766.tar.gz freebsd-ports-gnome-455cb15ea4578cd55ddf2e8e95580f2a9c50b766.tar.zst freebsd-ports-gnome-455cb15ea4578cd55ddf2e8e95580f2a9c50b766.zip |
games/libggz and games/ggz-* ports:
- Switch to USES=libtool:oldver
- Convert LIB_DEPENDS to new style
- Add stage support
- Use install-strip target
- Remove deprecated PTHREAD_FLAGS/LIBS
- Use options helpers
- Add missing NLS option to OPTIONS_DEFINE [1]
- Drop maintainership: kdegames don't need these ports anymore
Prompted by: ehaupt [1]
Diffstat (limited to 'games/ggz-sdl-games')
-rw-r--r-- | games/ggz-sdl-games/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/games/ggz-sdl-games/Makefile b/games/ggz-sdl-games/Makefile index 835b05511ad2..c8eee8b1f1cd 100644 --- a/games/ggz-sdl-games/Makefile +++ b/games/ggz-sdl-games/Makefile @@ -6,7 +6,7 @@ PORTVERSION= ${GGZ_VERSION} PORTREVISION= 8 CATEGORIES= games -MAINTAINER= kde@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= The GGZ Gaming Zone - SDL-based games USE_GL= gl @@ -15,13 +15,14 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-debug USE_GGZ= client -CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +INSTALL_TARGET= install-strip + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -pthread -NO_STAGE= yes post-install: - ${INSTALL_DATA} ${WRKSRC}/geekgame/module.dsc ${PREFIX}/share/ggz/geekgame.dsc - ${INSTALL_DATA} ${WRKSRC}/ttt3d/module.dsc ${PREFIX}/share/ggz/ttt3d.dsc + ${INSTALL_DATA} ${WRKSRC}/geekgame/module.dsc ${STAGEDIR}/${PREFIX}/share/ggz/geekgame.dsc + ${INSTALL_DATA} ${WRKSRC}/ttt3d/module.dsc ${STAGEDIR}/${PREFIX}/share/ggz/ttt3d.dsc .include "${.CURDIR}/../libggz/bsd.ggz.mk" .include <bsd.port.mk> |