diff options
author | stas <stas@FreeBSD.org> | 2006-09-20 19:21:59 +0800 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2006-09-20 19:21:59 +0800 |
commit | 690719e4d56669840ac4b9264f949634ed10d1c1 (patch) | |
tree | f8a62d437d458241263339bd8d7a8582056207da /games/pongix | |
parent | 5cbdf409c7db9b9d115b500f9084c97595f61719 (diff) | |
download | freebsd-ports-gnome-690719e4d56669840ac4b9264f949634ed10d1c1.tar.gz freebsd-ports-gnome-690719e4d56669840ac4b9264f949634ed10d1c1.tar.zst freebsd-ports-gnome-690719e4d56669840ac4b9264f949634ed10d1c1.zip |
- Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration
binary)
- Update graphics/sdl_ttf to version 2.0.8
- Update graphics/sdl_image to version 1.2.5
- Update audio/sdl_mixer to version 1.2.7
- Update net/sdl_net to version 1.2.6
- Update Mk/bsd.sdl.mk accordingly
- Fix dependent ports to fit the new directory structure and avoid several
API breakages
- Bump up portrevisions for all dependent ports to allow them to be upgraded
by portupgrade/portmaster etc tools
Approved by: kris (portmgr), sem (mentor)
Diffstat (limited to 'games/pongix')
-rw-r--r-- | games/pongix/Makefile | 5 | ||||
-rw-r--r-- | games/pongix/files/patch-configure | 4 |
2 files changed, 3 insertions, 6 deletions
diff --git a/games/pongix/Makefile b/games/pongix/Makefile index 418dc2ca900c..e5df0830f64e 100644 --- a/games/pongix/Makefile +++ b/games/pongix/Makefile @@ -7,6 +7,7 @@ PORTNAME= pongix PORTVERSION= 0.4 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.losersjuegos.com.ar/juegos/pongix/descargas/ @@ -22,10 +23,6 @@ LDFLAGS+= -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD} CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" -post-extract: - @${FIND} -E ${WRKSRC}/src/ -type f -iregex ".*\.(c|h)" \ - -print0 | ${XARGS} -0 ${REINPLACE_CMD} -e 's/<SDL/<SDL11/g' - do-install: ${MKDIR} ${DATADIR} @cd ${WRKSRC}/src && \ diff --git a/games/pongix/files/patch-configure b/games/pongix/files/patch-configure index d6e13f3e28d5..13b7608d47a0 100644 --- a/games/pongix/files/patch-configure +++ b/games/pongix/files/patch-configure @@ -5,7 +5,7 @@ else ac_check_lib_save_LIBS=$LIBS -LIBS="-lSDL $LIBS" -+LIBS="`sdl11-config --libs` $LIBS" ++LIBS="`sdl-config --libs` $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF @@ -14,7 +14,7 @@ _ACEOF - LIBS="-lSDL $LIBS" -+ LIBS="`sdl11-config --libs` $LIBS" ++ LIBS="`sdl-config --libs` $LIBS" else \ |