summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2010-09-05 17:30:39 +0200
committerMarc-Antoine Perennou <Marc-Antoine@Perennou.com>2010-09-05 17:31:14 +0200
commitd68b782e6ff9cf4d7a99b4beff435ba861e78aad (patch)
tree324bbd248946a2beedcfacccb2579b0e91c40739 /net-wireless
parentbump glib (diff)
downloadkeruspe-d68b782e6ff9cf4d7a99b4beff435ba861e78aad.tar.gz
keruspe-d68b782e6ff9cf4d7a99b4beff435ba861e78aad.tar.bz2
keruspe-d68b782e6ff9cf4d7a99b4beff435ba861e78aad.zip
lil cleanup
Diffstat (limited to 'net-wireless')
-rw-r--r--net-wireless/gnome-bluetooth/Manifest4
-rw-r--r--net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-add-pin.patch23
-rw-r--r--net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-mounted-failure.patch34
-rw-r--r--net-wireless/gnome-bluetooth/gnome-bluetooth-2.30.0-r1.ebuild53
4 files changed, 0 insertions, 114 deletions
diff --git a/net-wireless/gnome-bluetooth/Manifest b/net-wireless/gnome-bluetooth/Manifest
deleted file mode 100644
index ce95ab9e..00000000
--- a/net-wireless/gnome-bluetooth/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX gnome-bluetooth-2.30.0-add-pin.patch 838 RMD160 38f83f8aaba9cb8f45f42b0ac7b943eba9234dda SHA1 e03d3a7bcb28d3bb8af59b60a1ec8c76d8bf2613 SHA256 43a9fabca0daf02cf7908d47c7cab5ee3a687d7241adc5af440bc7f593c400f1
-AUX gnome-bluetooth-2.30.0-mounted-failure.patch 1053 RMD160 3f1cceadb563c4fe9672fbe9c6a4dda3926c1c61 SHA1 b1308644e93b691c4e3875407c88c3cad0a34896 SHA256 3da63558ec863549c37f4388c51c5bab31bf2c3d8e68512d49bd69d2eab9626d
-EBUILD gnome-bluetooth-2.30.0-r1.ebuild 1387 RMD160 ea49fdf1984fddd1ad3e1f89012c66cb37a0cec4 SHA1 696d1976513621871c52e0a5a7e0ce93844875aa SHA256 d8467e10ade622fef717b508bae5936587e3c64063f6198c7e748ca1367d7001
-DIST gnome-bluetooth-2.30.0.tar.bz2 1015602 RMD160 cc13229f22a09cb72fd1325d0f08bd69f42766e8 SHA1 76183906a0d644547bd4192a43908cdd00292ece SHA256 4caafa8c28195c81d8c51414f3a64489f81b9b46cac56979aeaaff8c9ebb78d4
diff --git a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-add-pin.patch b/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-add-pin.patch
deleted file mode 100644
index dc55eb65..00000000
--- a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-add-pin.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From fff176c2b14516bc572576199490a0f526999b24 Mon Sep 17 00:00:00 2001
-From: Bastien Nocera <hadess@hadess.net>
-Date: Sun, 02 May 2010 17:45:21 +0000
-Subject: Add pin code for BT-GPS8 JENTRO
-
-https://bugzilla.gnome.org/show_bug.cgi?id=617371
----
-diff --git a/wizard/pin-code-database.xml b/wizard/pin-code-database.xml
-index 8f9e9a3..8a73d65 100644
---- a/wizard/pin-code-database.xml
-+++ b/wizard/pin-code-database.xml
-@@ -65,6 +65,9 @@
- <device oui="00:19:1D:" name="Nintendo RVL-CNT-01" pin="NULL"/>
- <device oui="00:1F:C5:" name="Nintendo RVL-CNT-01" pin="NULL"/>
-
-+ <!-- BT-GPS8 JENTRO, GPS mouse -->
-+ <device oui="00:0D:B5:" name="BT-GPS8 JENTRO" pin="0000"/>
-+
- <!-- GPS devices -->
- <device oui="00:0D:B5:" name="TomTom Wireless GPS MkII" pin="0000"/>
- <device oui="00:0D:B5:" name="GPS-GW-005" pin="0000"/>
---
-cgit v0.8.3.1
diff --git a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-mounted-failure.patch b/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-mounted-failure.patch
deleted file mode 100644
index 90e5da5d..00000000
--- a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-2.30.0-mounted-failure.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 49c9ab7ddd8c20ad1722d20185a0fc3e71ce2d20 Mon Sep 17 00:00:00 2001
-From: Bastien Nocera <hadess@hadess.net>
-Date: Wed, 26 May 2010 14:24:15 +0000
-Subject: Don't fail to browse the device if already mounted
-
-We don't need to have an error if the device is already mounted,
-just show it already!
----
-diff --git a/applet/main.c b/applet/main.c
-index 5655a75..dd517c8 100644
---- a/applet/main.c
-+++ b/applet/main.c
-@@ -114,9 +114,16 @@ mount_finish_cb (GObject *source_object,
-
- if (g_file_mount_enclosing_volume_finish (G_FILE (source_object),
- res, &error) == FALSE) {
-- g_printerr ("Failed to mount OBEX volume: %s", error->message);
-- g_error_free (error);
-- return;
-+ /* Ignore "already mounted" error */
-+ if (error->domain == G_IO_ERROR &&
-+ error->code == G_IO_ERROR_ALREADY_MOUNTED) {
-+ g_error_free (error);
-+ error = NULL;
-+ } else {
-+ g_printerr ("Failed to mount OBEX volume: %s", error->message);
-+ g_error_free (error);
-+ return;
-+ }
- }
-
- uri = g_file_get_uri (G_FILE (source_object));
---
-cgit v0.8.3.1
diff --git a/net-wireless/gnome-bluetooth/gnome-bluetooth-2.30.0-r1.ebuild b/net-wireless/gnome-bluetooth/gnome-bluetooth-2.30.0-r1.ebuild
deleted file mode 100644
index 3a13f215..00000000
--- a/net-wireless/gnome-bluetooth/gnome-bluetooth-2.30.0-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=3
-inherit gnome2
-
-DESCRIPTION="Fork of bluez-gnome focused on integration with GNOME"
-HOMEPAGE="http://live.gnome.org/GnomeBluetooth"
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="2"
-IUSE="doc introspection nautilus"
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND=">=dev-libs/glib-2.19.1
- >=x11-libs/gtk+-2.19.1
- >=x11-libs/libnotify-0.4.3
- >=gnome-base/gconf-2.6
- >=dev-libs/dbus-glib-0.74
- dev-libs/libunique:0
- nautilus? ( >=gnome-extra/nautilus-sendto-2.28.0.1[-bluetooth] )"
-RDEPEND="${COMMON_DEPEND}
- >=net-wireless/bluez-4.34
- app-mobilephone/obexd"
-DEPEND="${COMMON_DEPEND}
- !!net-wireless/bluez-gnome
- app-text/gnome-doc-utils
- app-text/scrollkeeper
- dev-libs/libxml2
- dev-util/intltool
- dev-util/pkgconfig
- sys-devel/gettext
- x11-libs/libX11
- x11-libs/libXi
- x11-proto/xproto
- gnome-base/gnome-common
- dev-util/gtk-doc-am
- introspection? ( dev-libs/gobject-introspection )
- doc? ( >=dev-util/gtk-doc-1.9 )"
-
-DOCS="AUTHORS README NEWS ChangeLog"
-G2CONF="${G2CONF}
---disable-desktop-update
---disable-icon-update
---disable-introspection
-$(use_enable nautilus-sendto)"
-#$(use_enable introspection)" needs dbus-glib[introspection] which doesn't exist
-
-src_prepare() {
- gnome2_src_prepare
- epatch "${FILESDIR}/${P}-add-pin.patch"
- epatch "${FILESDIR}/${P}-mounted-failure.patch"
-}