summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2007-12-05 22:52:44 +0000
committerAlfredo Tupone <tupone@gentoo.org>2007-12-05 22:52:44 +0000
commit9ea85ddb9b5ab0584eaf1c4146aa06d7d88aefcd (patch)
tree874cb1fb02d43d89fbda9a1fc78508c98ea169fe /games-arcade/xbill/files
parentStable on amd64 wrt bug #201249 (diff)
downloadhistorical-9ea85ddb9b5ab0584eaf1c4146aa06d7d88aefcd.tar.gz
historical-9ea85ddb9b5ab0584eaf1c4146aa06d7d88aefcd.tar.bz2
historical-9ea85ddb9b5ab0584eaf1c4146aa06d7d88aefcd.zip
Patched to use gtk-2. Bug #201214
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'games-arcade/xbill/files')
-rw-r--r--games-arcade/xbill/files/digest-xbill-2.1-r23
-rw-r--r--games-arcade/xbill/files/xbill-2.1-gtk2.patch18
2 files changed, 21 insertions, 0 deletions
diff --git a/games-arcade/xbill/files/digest-xbill-2.1-r2 b/games-arcade/xbill/files/digest-xbill-2.1-r2
new file mode 100644
index 000000000000..4b819313ddc6
--- /dev/null
+++ b/games-arcade/xbill/files/digest-xbill-2.1-r2
@@ -0,0 +1,3 @@
+MD5 585e4866b15255a24203db9959407b2f xbill-2.1.tar.gz 77610
+RMD160 1d8a680f45775e7c840b4fe12cd21a439d41b2dc xbill-2.1.tar.gz 77610
+SHA256 0efdfff1ce2df70b7a15601cb488cd7b2eb918d21d78e877bd773f112945608d xbill-2.1.tar.gz 77610
diff --git a/games-arcade/xbill/files/xbill-2.1-gtk2.patch b/games-arcade/xbill/files/xbill-2.1-gtk2.patch
new file mode 100644
index 000000000000..70817b09c7ab
--- /dev/null
+++ b/games-arcade/xbill/files/xbill-2.1-gtk2.patch
@@ -0,0 +1,18 @@
+--- configure.in.old 2007-12-05 22:37:57.000000000 +0100
++++ configure.in 2007-12-05 22:54:57.000000000 +0100
+@@ -88,12 +88,11 @@
+ [ --enable-gtk build with the GTK widget set])
+
+ if test "$enable_gtk" != "no"; then
+- AC_CHECK_PROG(GTKCONFIG, gtk-config, yes, no)
++ PKG_CHECK_MODULES(GTK, gtk+-2.0)
+
+- if test "X$GTKCONFIG" = X"yes"; then
++ if test $pkg_failed = no; then
+ AC_DEFINE(USE_GTK)
+- GTK_CFLAGS="`gtk-config --cflags`"
+- WIDGET_LIBS="$WIDGET_LIBS `gtk-config --libs`"
++ WIDGET_LIBS="$WIDGET_LIBS $GTK_LIBS"
+ WIDGET_OBJS="$WIDGET_OBJS gtk.o"
+ fi
+ fi