diff options
author | Joe McCann <joem@gentoo.org> | 2005-03-09 07:50:48 +0000 |
---|---|---|
committer | Joe McCann <joem@gentoo.org> | 2005-03-09 07:50:48 +0000 |
commit | f2e663d4ba67c0554e701d5ccb4c8ea048612ef4 (patch) | |
tree | 13e13ce8d58b79c2d3d147f1fb53cde91c1a6fdb /gnome-extra/gnome-games/files | |
parent | gnome-2.10 release (diff) | |
download | gentoo-2-f2e663d4ba67c0554e701d5ccb4c8ea048612ef4.tar.gz gentoo-2-f2e663d4ba67c0554e701d5ccb4c8ea048612ef4.tar.bz2 gentoo-2-f2e663d4ba67c0554e701d5ccb4c8ea048612ef4.zip |
gnome-2.10 release
(Portage version: 2.0.51.19)
Diffstat (limited to 'gnome-extra/gnome-games/files')
-rw-r--r-- | gnome-extra/gnome-games/files/digest-gnome-games-2.10.0 | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-games/files/gnome-games-2.9.6-nohowl.patch | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/gnome-extra/gnome-games/files/digest-gnome-games-2.10.0 b/gnome-extra/gnome-games/files/digest-gnome-games-2.10.0 new file mode 100644 index 000000000000..6327a396b331 --- /dev/null +++ b/gnome-extra/gnome-games/files/digest-gnome-games-2.10.0 @@ -0,0 +1 @@ +MD5 c3a1a8fd025a0174efa70d4e480114cf gnome-games-2.10.0.tar.bz2 5292770 diff --git a/gnome-extra/gnome-games/files/gnome-games-2.9.6-nohowl.patch b/gnome-extra/gnome-games/files/gnome-games-2.9.6-nohowl.patch new file mode 100644 index 000000000000..df2c629c520c --- /dev/null +++ b/gnome-extra/gnome-games/files/gnome-games-2.9.6-nohowl.patch @@ -0,0 +1,25 @@ +--- gnome-games-2.9.6/configure.in 2005-02-08 16:55:35.000000000 +0800 ++++ gnome-games-2.9.6-nohowl/configure.in 2005-02-13 18:39:57.424458696 +0800 +@@ -85,11 +85,17 @@ + AC_SUBST(GNOME_GAMES_CFLAGS) + AC_SUBST(GNOME_GAMES_LIBS) + +-PKG_CHECK_MODULES(HOWL, howl >= 0.9.6, [ HOWL_PRESENT="yes" ], +- [ CFLAGS="$CFLAGS -DNO_HOWL" +- HOWL_PRESENT="no" ]) +-AC_SUBST(HOWL_CFLAGS) +-AC_SUBST(HOWL_LIBS) ++AC_ARG_ENABLE(howl, [ --disable-howl build without howl support]) ++if test "x$enable_howl" != "xno"; then ++ PKG_CHECK_MODULES(HOWL, howl >= 0.9.6, [ HOWL_PRESENT="yes" ], ++ [ CFLAGS="$CFLAGS -DNO_HOWL" ++ HOWL_PRESENT="no" ]) ++ AC_SUBST(HOWL_CFLAGS) ++ AC_SUBST(HOWL_LIBS) ++else ++ CFLAGS="$CFLAGS -DNO_HOWL" ++ HOWL_PRESENT="no" ++fi + + GNOME_GAMES_CXXFLAGS="$GNOME_GAMES_CFLAGS -I\$(top_srcdir)/libgames-support $WARN_CXXFLAGS" + GNOME_GAMES_CFLAGS="$GNOME_GAMES_CFLAGS -I\$(top_srcdir)/libgames-support $WARN_CFLAGS" |