diff options
author | Markus Dittrich <markusle@gentoo.org> | 2008-10-28 13:36:24 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2008-10-28 13:36:24 +0000 |
commit | b319097c4462bfb7c3c9ac306bc455469a3eacf7 (patch) | |
tree | cf7a8b715fe89e01c524ce8fb032f511045e8f95 /sci-mathematics | |
parent | sys-apps/preload - fix another bashisms. bug #244491 (diff) | |
download | gentoo-2-b319097c4462bfb7c3c9ac306bc455469a3eacf7.tar.gz gentoo-2-b319097c4462bfb7c3c9ac306bc455469a3eacf7.tar.bz2 gentoo-2-b319097c4462bfb7c3c9ac306bc455469a3eacf7.zip |
Fixed as-needed issues (see bug #244547).
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-SENTINEL-3 i686)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/pspp/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/pspp/files/pspp-0.6.0-as-needed.patch | 12 | ||||
-rw-r--r-- | sci-mathematics/pspp/pspp-0.6.0.ebuild | 3 |
3 files changed, 19 insertions, 2 deletions
diff --git a/sci-mathematics/pspp/ChangeLog b/sci-mathematics/pspp/ChangeLog index 2e4772367d5c..8d2d08e269aa 100644 --- a/sci-mathematics/pspp/ChangeLog +++ b/sci-mathematics/pspp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/pspp # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/ChangeLog,v 1.7 2008/08/06 20:47:47 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/ChangeLog,v 1.8 2008/10/28 13:36:24 markusle Exp $ + + 28 Oct 2008; Markus Dittrich <markusle@gentoo.org> + +files/pspp-0.6.0-as-needed.patch, pspp-0.6.0.ebuild: + Fixed as-needed issues (see bug #244547). 06 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml: Add USE flag description to metadata wrt GLEP 56. diff --git a/sci-mathematics/pspp/files/pspp-0.6.0-as-needed.patch b/sci-mathematics/pspp/files/pspp-0.6.0-as-needed.patch new file mode 100644 index 000000000000..88257292de6a --- /dev/null +++ b/sci-mathematics/pspp/files/pspp-0.6.0-as-needed.patch @@ -0,0 +1,12 @@ +diff -Naur pspp-0.6.0/src/ui/terminal/automake.mk pspp-0.6.0.new/src/ui/terminal/automake.mk +--- pspp-0.6.0/src/ui/terminal/automake.mk 2008-05-03 01:59:39.000000000 -0400 ++++ pspp-0.6.0.new/src/ui/terminal/automake.mk 2008-10-28 09:20:50.000000000 -0400 +@@ -37,7 +37,7 @@ + $(NCURSES_LIBS) \ + $(LIBICONV) \ + gl/libgl.la \ +- @LIBINTL@ @LIBREADLINE@ ++ @LIBINTL@ -lreadline + + + diff --git a/sci-mathematics/pspp/pspp-0.6.0.ebuild b/sci-mathematics/pspp/pspp-0.6.0.ebuild index cfcbfd414f6b..4b793a5ee5d9 100644 --- a/sci-mathematics/pspp/pspp-0.6.0.ebuild +++ b/sci-mathematics/pspp/pspp-0.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/pspp-0.6.0.ebuild,v 1.2 2008/06/30 23:11:40 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pspp/pspp-0.6.0.ebuild,v 1.3 2008/10/28 13:36:24 markusle Exp $ inherit elisp-common autotools @@ -32,6 +32,7 @@ src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-disable-inline.patch + epatch "${FILESDIR}"/${P}-as-needed.patch eautoreconf } |