summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2009-09-26 23:25:43 +0000
committerMart Raudsepp <leio@gentoo.org>2009-09-26 23:25:43 +0000
commita6998617e655d077c3376f5bfe50d737fde7b931 (patch)
tree37e2694f5958b51ce0418cc25ae09ca29708f4f9 /app-mobilephone
parentAdding Rails 1 to graaff's mask from Aug 22 (diff)
downloadgentoo-2-a6998617e655d077c3376f5bfe50d737fde7b931.tar.gz
gentoo-2-a6998617e655d077c3376f5bfe50d737fde7b931.tar.bz2
gentoo-2-a6998617e655d077c3376f5bfe50d737fde7b931.zip
Remove old, which is not bluez-4 enabled
(Portage version: 2.2_rc22/cvs/Linux 2.6.31-gentoo x86_64, RepoMan options: --force)
Diffstat (limited to 'app-mobilephone')
-rw-r--r--app-mobilephone/gnome-phone-manager/ChangeLog8
-rw-r--r--app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-as-needed.patch74
-rw-r--r--app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-pixmaps.patch11
-rw-r--r--app-mobilephone/gnome-phone-manager/gnome-phone-manager-0.8-r1.ebuild45
4 files changed, 7 insertions, 131 deletions
diff --git a/app-mobilephone/gnome-phone-manager/ChangeLog b/app-mobilephone/gnome-phone-manager/ChangeLog
index 804ff34b9568..28728b2c72b4 100644
--- a/app-mobilephone/gnome-phone-manager/ChangeLog
+++ b/app-mobilephone/gnome-phone-manager/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-mobilephone/gnome-phone-manager
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/gnome-phone-manager/ChangeLog,v 1.30 2009/05/11 19:29:08 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/gnome-phone-manager/ChangeLog,v 1.31 2009/09/26 23:25:42 leio Exp $
+
+ 26 Sep 2009; Mart Raudsepp <leio@gentoo.org>
+ -files/gnome-phone-manager-0.8-as-needed.patch,
+ -files/gnome-phone-manager-0.8-pixmaps.patch,
+ -gnome-phone-manager-0.8-r1.ebuild:
+ Remove old, which is not bluez-4 enabled
11 May 2009; Christian Faulhammer <fauli@gentoo.org>
gnome-phone-manager-0.60.ebuild:
diff --git a/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-as-needed.patch b/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-as-needed.patch
deleted file mode 100644
index 072798cde9e9..000000000000
--- a/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-as-needed.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-diff -Nru gnome-phone-manager-0.8.orig/configure.in gnome-phone-manager-0.8/configure.in
---- gnome-phone-manager-0.8.orig/configure.in 2006-09-18 18:38:31.000000000 +0300
-+++ gnome-phone-manager-0.8/configure.in 2006-10-07 01:30:46.662942500 +0300
-@@ -59,6 +59,11 @@
- AC_CHECK_TYPES([EContactPhotoType], , , [#include <libebook/e-contact.h>])
- CPPFLAGS="$saved_CPPFLAGS"
-
-+# --as-needed cannot work with this because pkg-config --libs gnome-bluetooth
-+# returns "-lgnomebt -lbtctl"; gnomebt library has all the symbols this package needs
-+# but as UNDEF! The following line solve the problem.
-+PHONEMGR_LIBS="-lbtctl ${PHONEMGR_LIBS}"
-+
- AC_SUBST(PHONEMGR_CFLAGS)
- AC_SUBST(PHONEMGR_LIBS)
-
-diff -Nru gnome-phone-manager-0.8.orig/libegg/libegg/iconlist/Makefile.am gnome-phone-manager-0.8/libegg/libegg/iconlist/Makefile.am
---- gnome-phone-manager-0.8.orig/libegg/libegg/iconlist/Makefile.am 2006-10-07 01:28:52.000000000 +0300
-+++ gnome-phone-manager-0.8/libegg/libegg/iconlist/Makefile.am 2006-10-07 01:30:46.634940750 +0300
-@@ -11,8 +11,8 @@
- noinst_LTLIBRARIES = libeggiconlist.la
-
- libeggiconlist_la_LIBADD = \
-- $(EGG_LIBS) \
-- $(top_builddir)/libegg/util/libeggutil.la
-+ $(top_builddir)/libegg/util/libeggutil.la \
-+ $(EGG_LIBS)
-
- libeggiconlist_la_SOURCES = \
- eggiconlist.c
-diff -Nru gnome-phone-manager-0.8.orig/libegg/libegg/tray/Makefile.am gnome-phone-manager-0.8/libegg/libegg/tray/Makefile.am
---- gnome-phone-manager-0.8.orig/libegg/libegg/tray/Makefile.am 2006-10-07 01:28:52.000000000 +0300
-+++ gnome-phone-manager-0.8/libegg/libegg/tray/Makefile.am 2006-10-07 01:30:46.634940750 +0300
-@@ -11,8 +11,8 @@
- noinst_LTLIBRARIES = libeggtray.la
-
- libeggtray_la_LIBADD = \
-- $(EGG_TRAY_LIBS) \
-- $(top_builddir)/libegg/util/libeggutil.la
-+ $(top_builddir)/libegg/util/libeggutil.la \
-+ $(EGG_TRAY_LIBS)
-
- libeggtray_la_SOURCES = \
- eggtrayicon.c \
-diff -Nru gnome-phone-manager-0.8.orig/libgsm/Makefile.am gnome-phone-manager-0.8/libgsm/Makefile.am
---- gnome-phone-manager-0.8.orig/libgsm/Makefile.am 2006-10-07 01:28:52.000000000 +0300
-+++ gnome-phone-manager-0.8/libgsm/Makefile.am 2006-10-07 01:30:46.634940750 +0300
-@@ -17,10 +17,10 @@
- phonemgr-marshal.c phonemgr-marshal.h
-
- glibgsmtest_SOURCES = glibgsmtest.c
--glibgsmtest_LDADD = $(LIBGSM_LIBS) libgsmwrap.la
-+glibgsmtest_LDADD = libgsmwrap.la $(LIBGSM_LIBS)
-
- gnokii_identify_SOURCES = gnokii-identify.c
--gnokii_identify_LDADD = $(LIBGSM_LIBS) libgsmwrap.la
-+gnokii_identify_LDADD = libgsmwrap.la $(LIBGSM_LIBS)
-
- phones_DATA = phones.xml
- phonesdir = $(datadir)/$(PACKAGE)
-diff -Nru gnome-phone-manager-0.8.orig/src/Makefile.am gnome-phone-manager-0.8/src/Makefile.am
---- gnome-phone-manager-0.8.orig/src/Makefile.am 2006-10-07 01:28:52.000000000 +0300
-+++ gnome-phone-manager-0.8/src/Makefile.am 2006-10-07 01:30:46.662942500 +0300
-@@ -22,9 +22,9 @@
- $(CLA_FILES)
-
- gnome_phone_manager_LDADD = \
-- $(PHONEMGR_LIBS) \
- ../libegg/libegg/tray/libeggtray.la \
-- ../libgsm/libgsmwrap.la
-+ ../libgsm/libgsmwrap.la \
-+ $(PHONEMGR_LIBS)
-
- EXTRA_DIST = gnome-phone-manager.desktop.in
-
diff --git a/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-pixmaps.patch b/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-pixmaps.patch
deleted file mode 100644
index 22ba8415e49e..000000000000
--- a/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-pixmaps.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Nru gnome-phone-manager-0.8.orig/ui/Makefile.am gnome-phone-manager-0.8/ui/Makefile.am
---- gnome-phone-manager-0.8.orig/ui/Makefile.am 2006-10-07 01:32:56.000000000 +0300
-+++ gnome-phone-manager-0.8/ui/Makefile.am 2006-10-07 01:38:44.776822750 +0300
-@@ -1,6 +1,6 @@
-
- pixmapsdir = $(datadir)/$(pixmaps)
--pixmaps_DATA = cellphone.png
-+#pixmaps_DATA = cellphone.png
-
- uidir = $(datadir)/$(PACKAGE)
- ui_DATA = phonemgr.glade
diff --git a/app-mobilephone/gnome-phone-manager/gnome-phone-manager-0.8-r1.ebuild b/app-mobilephone/gnome-phone-manager/gnome-phone-manager-0.8-r1.ebuild
deleted file mode 100644
index b5f830e8a7d2..000000000000
--- a/app-mobilephone/gnome-phone-manager/gnome-phone-manager-0.8-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/gnome-phone-manager/gnome-phone-manager-0.8-r1.ebuild,v 1.3 2009/03/28 22:55:13 eva Exp $
-
-inherit gnome2 eutils autotools
-
-DESCRIPTION="a program created to allow you to control aspects of your mobile phone from your GNOME 2 desktop"
-HOMEPAGE="http://live.gnome.org/PhoneManager"
-SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.tar.bz2 "
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND=">=gnome-base/libgnomeui-2
- >=x11-libs/gtk+-2
- >=gnome-base/libgnome-2
- >=gnome-base/gconf-2
- >=dev-libs/glib-2
- >=gnome-base/orbit-2
- >=dev-libs/openobex-1
- >=app-mobilephone/gnokii-0.6.12
- >=net-wireless/bluez-libs-2.25
- >=gnome-extra/evolution-data-server-1.2.3
- >=net-wireless/gnome-bluetooth-0.7.0-r1"
-
-DEPEND="${RDEPEND}
- dev-util/intltool
- dev-util/pkgconfig"
-
-DOCS="README NEWS AUTHORS ChangeLog"
-
-src_unpack() {
- gnome2_src_unpack
-
- epatch "${FILESDIR}/${P}-pixmaps.patch"
- epatch "${FILESDIR}/${P}-as-needed.patch"
- # The replace to GTK_ENABLE_DEPRECATED is to not have to deal with the previous line containing a backslash
- sed -e 's/-DGTK_DISABLE_DEPRECATED \\/-DGTK_ENABLE_DEPRECATED/g' -e 's/-DGDK_DISABLE_DEPRECATED \\//g' -e 's/-DG_DISABLE_DEPRECATED//g' \
- -i "${S}/libegg/libegg/Makefile.am" "${S}/libegg/libegg/iconlist/Makefile.am" "${S}/libegg/libegg/tray/Makefile.am"
-
- intltoolize --force --copy --automake || die "intltoolize failed"
- eautoreconf
-}