summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2006-10-06 22:44:39 +0000
committerAlin Năstac <mrness@gentoo.org>2006-10-06 22:44:39 +0000
commit33005256a98d4ba84497031ceac60dddcf11ad00 (patch)
tree4dcc48a88f7fb936df05035c1e965cf5733dbb11 /app-mobilephone
parentSupport gcc4, openssl-0.9.8 bug#144958 (diff)
downloadhistorical-33005256a98d4ba84497031ceac60dddcf11ad00.tar.gz
historical-33005256a98d4ba84497031ceac60dddcf11ad00.tar.bz2
historical-33005256a98d4ba84497031ceac60dddcf11ad00.zip
Remove obsolete version. Version bump (#150307).
Package-Manager: portage-2.1.1
Diffstat (limited to 'app-mobilephone')
-rw-r--r--app-mobilephone/gnome-phone-manager/ChangeLog10
-rw-r--r--app-mobilephone/gnome-phone-manager/files/digest-gnome-phone-manager-0.83
-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.ebuild40
5 files changed, 137 insertions, 1 deletions
diff --git a/app-mobilephone/gnome-phone-manager/ChangeLog b/app-mobilephone/gnome-phone-manager/ChangeLog
index a02d9808032e..e8624836ca4b 100644
--- a/app-mobilephone/gnome-phone-manager/ChangeLog
+++ b/app-mobilephone/gnome-phone-manager/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for app-mobilephone/gnome-phone-manager
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/gnome-phone-manager/ChangeLog,v 1.11 2006/06/25 06:22:14 mrness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/gnome-phone-manager/ChangeLog,v 1.12 2006/10/06 22:44:39 mrness Exp $
+
+*gnome-phone-manager-0.8 (06 Oct 2006)
+
+ 06 Oct 2006; Alin Nastac <mrness@gentoo.org>
+ +files/gnome-phone-manager-0.8-as-needed.patch,
+ +files/gnome-phone-manager-0.8-pixmaps.patch,
+ -gnome-phone-manager-0.6.ebuild, +gnome-phone-manager-0.8.ebuild:
+ Remove obsolete version. Version bump (#150307).
25 Jun 2006; Alin Nastac <mrness@gentoo.org>
gnome-phone-manager-0.7.ebuild:
diff --git a/app-mobilephone/gnome-phone-manager/files/digest-gnome-phone-manager-0.8 b/app-mobilephone/gnome-phone-manager/files/digest-gnome-phone-manager-0.8
new file mode 100644
index 000000000000..3ceac4f0d27a
--- /dev/null
+++ b/app-mobilephone/gnome-phone-manager/files/digest-gnome-phone-manager-0.8
@@ -0,0 +1,3 @@
+MD5 1a645a23d8851e554b3809b71e2162f0 gnome-phone-manager-0.8.tar.bz2 675868
+RMD160 90aa1bb270bb85c18337557f115faa74efecd9ca gnome-phone-manager-0.8.tar.bz2 675868
+SHA256 23381eae0c4ecfae5b759e5169c72f8057bd234f21f9b2d074432cc8c08c9456 gnome-phone-manager-0.8.tar.bz2 675868
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
new file mode 100644
index 000000000000..072798cde9e9
--- /dev/null
+++ b/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-as-needed.patch
@@ -0,0 +1,74 @@
+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
new file mode 100644
index 000000000000..22ba8415e49e
--- /dev/null
+++ b/app-mobilephone/gnome-phone-manager/files/gnome-phone-manager-0.8-pixmaps.patch
@@ -0,0 +1,11 @@
+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.ebuild b/app-mobilephone/gnome-phone-manager/gnome-phone-manager-0.8.ebuild
new file mode 100644
index 000000000000..1e296987a37f
--- /dev/null
+++ b/app-mobilephone/gnome-phone-manager/gnome-phone-manager-0.8.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2006 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.ebuild,v 1.1 2006/10/06 22:44:39 mrness 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://usefulinc.com/software/phonemgr/"
+SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/${PN}/${PV}/${P}.tar.bz2 "
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~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"
+ eautoreconf
+}