diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2006-10-06 15:04:40 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2006-10-06 15:04:40 +0000 |
commit | d9ee90bd183e490dd012e0ea9e14d1f3bb44ab59 (patch) | |
tree | 2d277e82db88dd62db1a3e2feb100d7c317602c4 /app-pda/gnome-pilot | |
parent | * bump (diff) | |
download | gentoo-2-d9ee90bd183e490dd012e0ea9e14d1f3bb44ab59.tar.gz gentoo-2-d9ee90bd183e490dd012e0ea9e14d1f3bb44ab59.tar.bz2 gentoo-2-d9ee90bd183e490dd012e0ea9e14d1f3bb44ab59.zip |
Make it build with --as-needed. bug #149675
(Portage version: 2.1.2_pre2-r3)
Diffstat (limited to 'app-pda/gnome-pilot')
-rw-r--r-- | app-pda/gnome-pilot/ChangeLog | 6 | ||||
-rw-r--r-- | app-pda/gnome-pilot/files/gnome-pilot-2.0.13-as-needed.patch | 13 | ||||
-rw-r--r-- | app-pda/gnome-pilot/gnome-pilot-2.0.13-r1.ebuild | 12 |
3 files changed, 25 insertions, 6 deletions
diff --git a/app-pda/gnome-pilot/ChangeLog b/app-pda/gnome-pilot/ChangeLog index d016fd07b927..72af19f85b56 100644 --- a/app-pda/gnome-pilot/ChangeLog +++ b/app-pda/gnome-pilot/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-pda/gnome-pilot # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.26 2006/07/20 10:35:56 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.27 2006/10/06 15:04:40 dang Exp $ + + 06 Oct 2006; Daniel Gryniewicz <dang@gentoo.org> + +files/gnome-pilot-2.0.13-as-needed.patch, gnome-pilot-2.0.13-r1.ebuild: + Make it build with --as-needed. bug #149675 *gnome-pilot-2.0.13-r1 (20 Jul 2006) diff --git a/app-pda/gnome-pilot/files/gnome-pilot-2.0.13-as-needed.patch b/app-pda/gnome-pilot/files/gnome-pilot-2.0.13-as-needed.patch new file mode 100644 index 000000000000..50ab7504db91 --- /dev/null +++ b/app-pda/gnome-pilot/files/gnome-pilot-2.0.13-as-needed.patch @@ -0,0 +1,13 @@ +diff --exclude-from=/home/dang/.diffrc -u -ruN gnome-pilot-2.0.13.orig/gpilotd/Makefile.am gnome-pilot-2.0.13/gpilotd/Makefile.am +--- gnome-pilot-2.0.13.orig/gpilotd/Makefile.am 2005-12-03 14:09:50.000000000 -0500 ++++ gnome-pilot-2.0.13/gpilotd/Makefile.am 2006-10-06 10:40:05.000000000 -0400 +@@ -142,6 +142,9 @@ + libgpilotdconduit_la_LDFLAGS = \ + -version-info $(GPILOTD_CONDUIT_CURRENT):$(GPILOTD_CONDUIT_REVISION):$(GPILOTD_CONDUIT_AGE) + ++libgpilotdconduit_la_LIBADD = \ ++ $(GNOME_PILOT_LIBS) ++ + ### + + noinst_HEADERS = gnome-pilot-conduit-backup-private.h diff --git a/app-pda/gnome-pilot/gnome-pilot-2.0.13-r1.ebuild b/app-pda/gnome-pilot/gnome-pilot-2.0.13-r1.ebuild index df7e68a7d6d8..1487e773998a 100644 --- a/app-pda/gnome-pilot/gnome-pilot-2.0.13-r1.ebuild +++ b/app-pda/gnome-pilot/gnome-pilot-2.0.13-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.0.13-r1.ebuild,v 1.1 2006/07/20 10:35:56 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.0.13-r1.ebuild,v 1.2 2006/10/06 15:04:40 dang Exp $ -inherit gnome2 eutils +inherit gnome2 eutils autotools DESCRIPTION="Gnome Palm Pilot and Palm OS Device Syncing Library" HOMEPAGE="http://live.gnome.org/GnomePilot" @@ -32,7 +32,9 @@ DOCS="AUTHORS COPYING* ChangeLog README NEWS" SCROLLKEEPER_UPDATE="0" src_unpack() { - unpack ${A} - cd "${S}" - gnome2_omf_fix + gnome2_src_unpack + + epatch "${FILESDIR}/${P}-as-needed.patch" + + eautoreconf } |