summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@gentoo.org>2008-04-20 04:32:39 +0000
committerSaleem Abdulrasool <compnerd@gentoo.org>2008-04-20 04:32:39 +0000
commit6e0c07fbb38df53c12141cf74d6e26675d31175a (patch)
treeef87a72833507aa7960f00e1b9c423611e3a345e /net-p2p/transmission/files
parentAdd sys-libs/readline dependency (#215079). (diff)
downloadgentoo-2-6e0c07fbb38df53c12141cf74d6e26675d31175a.tar.gz
gentoo-2-6e0c07fbb38df53c12141cf74d6e26675d31175a.tar.bz2
gentoo-2-6e0c07fbb38df53c12141cf74d6e26675d31175a.zip
version bump from upstream
(Portage version: 2.1.5_rc2)
Diffstat (limited to 'net-p2p/transmission/files')
-rw-r--r--net-p2p/transmission/files/transmission-1.11-libnotify-option.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/net-p2p/transmission/files/transmission-1.11-libnotify-option.patch b/net-p2p/transmission/files/transmission-1.11-libnotify-option.patch
new file mode 100644
index 000000000000..41f5bcd18afe
--- /dev/null
+++ b/net-p2p/transmission/files/transmission-1.11-libnotify-option.patch
@@ -0,0 +1,35 @@
+--- /tmp/configure.ac.orig 2008-04-19 20:47:55.000000000 -0700
++++ /tmp/configure.ac 2008-04-19 21:10:12.000000000 -0700
+@@ -106,13 +106,16 @@
+ AC_DEFINE([HAVE_GIO], 1)
+ fi
+
+-PKG_CHECK_MODULES([LIBNOTIFY],
+- [libnotify >= $LIBNOTIFY_MINIMUM],
+- [use_libnotify=yes],
+- [use_libnotify=no])
+-AC_SUBST(LIBNOTIFY_LIBS)
+-AC_SUBST(LIBNOTIFY_CFLAGS)
+-if test "x$use_libnotify" = "xyes"; then
++AC_ARG_ENABLE([libnotify],
++ AS_HELP_STRING([--enable-libnotify], [enable notifications]),,
++ [enable_libnotify=yes])
++
++if test x$enable_libnotify = xyes ; then
++ PKG_CHECK_MODULES([LIBNOTIFY], [libnotify >= $LIBNOTIFY_MINIMUM])
++
++ AC_SUBST(LIBNOTIFY_LIBS)
++ AC_SUBST(LIBNOTIFY_CFLAGS)
++
+ AC_DEFINE([HAVE_LIBNOTIFY], 1)
+ fi
+
+@@ -288,7 +291,7 @@
+ Build Daemon: ${build_daemon}
+ Build BeOS client: ${build_beos}
+ Build GTK+ client: ${build_gtk}
+- ... libnotify support: ${use_libnotify}
++ ... libnotify support: ${enable_libnotify}
+ ... gio support: ${use_gio}
+ Build OS X client: ${build_darwin}
+ Build wxWidgets client: ${build_wx}