diff options
author | acm <acm@FreeBSD.org> | 2007-12-22 20:46:38 +0800 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2007-12-22 20:46:38 +0800 |
commit | 08c25e08a16526791e6145284db2bd315ba93ddb (patch) | |
tree | 1f0973448dc77094b6584ae74ed0127946d03fb2 /games | |
parent | d5f568a38c222a971e2811f4293dd0cf2050eb94 (diff) | |
download | freebsd-ports-gnome-08c25e08a16526791e6145284db2bd315ba93ddb.tar.gz freebsd-ports-gnome-08c25e08a16526791e6145284db2bd315ba93ddb.tar.zst freebsd-ports-gnome-08c25e08a16526791e6145284db2bd315ba93ddb.zip |
- Update to 0.7.2
Diffstat (limited to 'games')
-rw-r--r-- | games/pingus/Makefile | 7 | ||||
-rw-r--r-- | games/pingus/distinfo | 6 | ||||
-rw-r--r-- | games/pingus/files/patch-SConstruct | 15 |
3 files changed, 14 insertions, 14 deletions
diff --git a/games/pingus/Makefile b/games/pingus/Makefile index 1dc55f00176a..4811696b0ed0 100644 --- a/games/pingus/Makefile +++ b/games/pingus/Makefile @@ -6,8 +6,7 @@ # PORTNAME= pingus -PORTVERSION= 0.7.1 -PORTREVISION= 1 +PORTVERSION= 0.7.2 CATEGORIES= games MASTER_SITES= http://pingus.seul.org/files/ @@ -21,9 +20,11 @@ LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ USE_BZIP2= yes USE_ICONV= yes USE_SCONS= yes +SCONS_ARGS= with_linuxusbmouse=0 \ + with_linuxevdev=0 USE_SDL= sdl image mixer -PLIST= ${WRKDIR}/pkg-plist +PLIST= ${WRKDIR}/pkg-plist post-patch: @${REINPLACE_CMD} -e 's|add_path("data")|add_path("${DATADIR}")|g' \ diff --git a/games/pingus/distinfo b/games/pingus/distinfo index 5768e92f76cf..a4386993986a 100644 --- a/games/pingus/distinfo +++ b/games/pingus/distinfo @@ -1,3 +1,3 @@ -MD5 (pingus-0.7.1.tar.bz2) = b4fcf66d0dc5e1d6148447988f87d3b1 -SHA256 (pingus-0.7.1.tar.bz2) = 90772f82bc1b9655541feb6471573fcbe375a633a858fcf5798ad8160ae89fb5 -SIZE (pingus-0.7.1.tar.bz2) = 10648862 +MD5 (pingus-0.7.2.tar.bz2) = 88756802d483f922d0910a14cd26a951 +SHA256 (pingus-0.7.2.tar.bz2) = 8d24fbab29ca9401ae1a6a34f7a52eda5de0a9320940e771c6f04f991f5d0052 +SIZE (pingus-0.7.2.tar.bz2) = 11055748 diff --git a/games/pingus/files/patch-SConstruct b/games/pingus/files/patch-SConstruct index e5b0ef18f932..64416cbaa1f0 100644 --- a/games/pingus/files/patch-SConstruct +++ b/games/pingus/files/patch-SConstruct @@ -1,6 +1,6 @@ ---- SConstruct.orig 2007-09-22 10:46:31.000000000 -0500 -+++ SConstruct 2007-10-07 01:15:19.000000000 -0500 -@@ -326,7 +326,7 @@ +--- SConstruct 2007-12-21 22:00:22.000000000 -0500 ++++ SConstruct 2007-12-21 22:03:19.000000000 -0500 +@@ -409,7 +409,7 @@ not (os.path.exists('config.py') and os.path.exists('config.h')) and \ not GetOption('clean'): opts = DefineOptions(None, ARGUMENTS) @@ -9,22 +9,21 @@ Help(opts.GenerateHelpText(env)) opts.Update(env) -@@ -337,7 +337,9 @@ +@@ -422,7 +422,8 @@ if os.environ.has_key('PKG_CONFIG_PATH'): env['ENV']['PKG_CONFIG_PATH'] = os.environ['PKG_CONFIG_PATH'] - env['CPPPATH'] += ['.', 'src/'] -+ + env['CPPPATH'] = Split(env['CPPPATH']) + env['LIBPATH'] = Split(env['LIBPATH']) config_h_defines = [] -@@ -406,7 +408,6 @@ +@@ -510,7 +511,6 @@ config_h = open('config.h', 'w') - config_h.write('#define VERSION "0.7.1"\n') + config_h.write('#define VERSION "0.7.2"\n') - config_h.write('#define ENABLE_BINRELOC 1\n') - config_h.write('#define ICONV_CONST\n') # FIXME: make a check for this + config_h.write('#define ICONV_CONST %s\n' % iconv_const) for (v,k) in config_h_defines: config_h.write('#define %s %s\n' % (v, k)) |