diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-09-25 12:50:28 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-09-25 12:50:28 +0000 |
commit | b1e9dc7c051e3e4f2f11039e26c862c06e482969 (patch) | |
tree | 5084cbeba6f6298d8072d3785c5038529ebbd0a9 /games-puzzle/pingus/files | |
parent | PEER_DNS now allows OpenVPN to create /etc/resolv.conf or not, #193668 (diff) | |
download | gentoo-2-b1e9dc7c051e3e4f2f11039e26c862c06e482969.tar.gz gentoo-2-b1e9dc7c051e3e4f2f11039e26c862c06e482969.tar.bz2 gentoo-2-b1e9dc7c051e3e4f2f11039e26c862c06e482969.zip |
Version bump, bug #190206
(Portage version: 2.1.3.9)
Diffstat (limited to 'games-puzzle/pingus/files')
-rw-r--r-- | games-puzzle/pingus/files/digest-pingus-0.7.1 | 3 | ||||
-rw-r--r-- | games-puzzle/pingus/files/pingus-0.7.1-paths.patch | 34 |
2 files changed, 37 insertions, 0 deletions
diff --git a/games-puzzle/pingus/files/digest-pingus-0.7.1 b/games-puzzle/pingus/files/digest-pingus-0.7.1 new file mode 100644 index 000000000000..cb81a07f2d55 --- /dev/null +++ b/games-puzzle/pingus/files/digest-pingus-0.7.1 @@ -0,0 +1,3 @@ +MD5 b4fcf66d0dc5e1d6148447988f87d3b1 pingus-0.7.1.tar.bz2 10648862 +RMD160 a9fab65a9966999cc3cb16e03122404f8372df7b pingus-0.7.1.tar.bz2 10648862 +SHA256 90772f82bc1b9655541feb6471573fcbe375a633a858fcf5798ad8160ae89fb5 pingus-0.7.1.tar.bz2 10648862 diff --git a/games-puzzle/pingus/files/pingus-0.7.1-paths.patch b/games-puzzle/pingus/files/pingus-0.7.1-paths.patch new file mode 100644 index 000000000000..6adf00beaee8 --- /dev/null +++ b/games-puzzle/pingus/files/pingus-0.7.1-paths.patch @@ -0,0 +1,34 @@ +--- install.sh ++++ install.sh +@@ -14,8 +14,8 @@ + exit 1 + fi + +- BINDIR="$1/bin/" +- DATADIR="$1/share/pingus/" ++ BINDIR="${1}GENTOO_BINDIR" ++ DATADIR="${1}GENTOO_DATADIR" + + echo "Installing Pingus in: $1" + +--- SConstruct ++++ SConstruct +@@ -406,7 +406,6 @@ + + config_h = open('config.h', 'w') + config_h.write('#define VERSION "0.7.1"\n') +- config_h.write('#define ENABLE_BINRELOC 1\n') + config_h.write('#define ICONV_CONST\n') # FIXME: make a check for this + for (v,k) in config_h_defines: + config_h.write('#define %s %s\n' % (v, k)) +--- src/pingus_main.cpp ++++ src/pingus_main.cpp +@@ -583,7 +583,7 @@ + path_manager.add_path("data"); // assume game is run from source dir, without any magic + free(exe_path); + #else +- path_manager.add_path("data"); // assume game is run from source dir ++ path_manager.add_path("GENTOO_DATADIR/data"); + #endif + + if (!path_manager.find_path("data/core.res")) |