diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-10-06 22:44:39 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-10-06 22:44:39 +0000 |
commit | 33005256a98d4ba84497031ceac60dddcf11ad00 (patch) | |
tree | 4dcc48a88f7fb936df05035c1e965cf5733dbb11 /app-mobilephone/gnome-phone-manager/files | |
parent | Support gcc4, openssl-0.9.8 bug#144958 (diff) | |
download | historical-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/gnome-phone-manager/files')
3 files changed, 88 insertions, 0 deletions
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 |