diff options
Diffstat (limited to 'net-wireless')
-rw-r--r-- | net-wireless/gnome-bluetooth/ChangeLog | 6 | ||||
-rw-r--r-- | net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.32.0-nsd-automagic.patch | 28 |
2 files changed, 33 insertions, 1 deletions
diff --git a/net-wireless/gnome-bluetooth/ChangeLog b/net-wireless/gnome-bluetooth/ChangeLog index 0fba7ee2acd7..26e7efe43fd6 100644 --- a/net-wireless/gnome-bluetooth/ChangeLog +++ b/net-wireless/gnome-bluetooth/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-wireless/gnome-bluetooth # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/gnome-bluetooth/ChangeLog,v 1.87 2011/01/17 18:01:20 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/gnome-bluetooth/ChangeLog,v 1.88 2011/01/17 18:02:37 pacho Exp $ + + 17 Jan 2011; Pacho Ramos <pacho@gentoo.org> + +files/gnome-bluetooth-2.32.0-nsd-automagic.patch: + Add forgotten patch. 17 Jan 2011; Pacho Ramos <pacho@gentoo.org> gnome-bluetooth-2.32.0.ebuild: Fix nautilus-sendto automagic support, upstream bug #639130; RDEPEND on a diff --git a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.32.0-nsd-automagic.patch b/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.32.0-nsd-automagic.patch new file mode 100644 index 000000000000..6138fa749713 --- /dev/null +++ b/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.32.0-nsd-automagic.patch @@ -0,0 +1,28 @@ +From 3ffd3b7678f9095b2ce7ed06a7638210cb0d35e2 Mon Sep 17 00:00:00 2001 +From: Bastien Nocera <hadess@hadess.net> +Date: Mon, 17 Jan 2011 15:15:46 +0000 +Subject: build: Fix disabling nautilus-sendto in configure + +enable_nst was never set properly if we didn't use the default +value. + +https://bugzilla.gnome.org/show_bug.cgi?id=639130 +--- +diff --git a/configure.ac b/configure.ac +index 02aaf5f..c4f2804 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -99,8 +99,9 @@ PKG_CHECK_MODULES(SENDTO, + dnl nautilus-sendto plugin + AC_ARG_ENABLE(nautilus-sendto, + AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@], +- [build nautilus-sendto plugin]), , +- enable_nst=yes) ++ [build nautilus-sendto plugin]), ++ [enable_nst=$enableval], ++ [enable_nst=auto]) + + if test "x$enable_nst" != "xno"; then + PKG_CHECK_MODULES(NST, +-- +cgit v0.8.3.1 |