summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Noberasco <s4t4n@gentoo.org>2008-11-24 16:06:18 +0000
committerMichele Noberasco <s4t4n@gentoo.org>2008-11-24 16:06:18 +0000
commit18a0d87d491bc0d9e902c1d2c461647595c3f281 (patch)
tree920bb9e54f84f07dd3c88597630682d71d52017b /x11-plugins/wmail
parentRe-assign to freedesktop herd. (diff)
downloadgentoo-2-18a0d87d491bc0d9e902c1d2c461647595c3f281.tar.gz
gentoo-2-18a0d87d491bc0d9e902c1d2c461647595c3f281.tar.bz2
gentoo-2-18a0d87d491bc0d9e902c1d2c461647595c3f281.zip
Fixed LDFLAGS ordering, see bug #248620.
(Portage version: 2.1.4.5)
Diffstat (limited to 'x11-plugins/wmail')
-rw-r--r--x11-plugins/wmail/ChangeLog7
-rw-r--r--x11-plugins/wmail/wmail-2.0-r3.ebuild12
2 files changed, 14 insertions, 5 deletions
diff --git a/x11-plugins/wmail/ChangeLog b/x11-plugins/wmail/ChangeLog
index 2774870b9224..e422e9b4cb65 100644
--- a/x11-plugins/wmail/ChangeLog
+++ b/x11-plugins/wmail/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-plugins/wmail
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/ChangeLog,v 1.19 2007/12/01 12:50:13 nixnut Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/ChangeLog,v 1.20 2008/11/24 16:06:18 s4t4n Exp $
+
+ 24 Nov 2008; Michele NOberasco <s4t4n@gentoo.org> wmail-2.0-r3.ebuild:
+ Fixed LDFLAGS ordering, see bug #248620.
01 Dec 2007; nixnut <nixnut@gentoo.org> wmail-2.0-r3.ebuild:
Stable on ppc wrt bug 200650
diff --git a/x11-plugins/wmail/wmail-2.0-r3.ebuild b/x11-plugins/wmail/wmail-2.0-r3.ebuild
index 63de739be7b2..fbd1e3791a46 100644
--- a/x11-plugins/wmail/wmail-2.0-r3.ebuild
+++ b/x11-plugins/wmail/wmail-2.0-r3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild,v 1.5 2007/12/01 12:50:13 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmail/wmail-2.0-r3.ebuild,v 1.6 2008/11/24 16:06:18 s4t4n Exp $
inherit eutils
@@ -13,7 +13,10 @@ SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
-DEPEND="x11-libs/libdockapp"
+RDEPEND="x11-libs/libdockapp"
+
+DEPEND="${RDEPEND}
+ >=sys-apps/sed-4.1.4-r1"
src_unpack() {
unpack ${A}
@@ -23,6 +26,9 @@ src_unpack() {
# make from parsing in maildir format faster, thanks
# to Stanislav Kuchar
epatch "${FILESDIR}"/${P}.maildir-parse-from.patch
+
+ # fix LDFLAGS ordering, see bug #248620
+ sed -i 's/$(LIBS) -o $@ $^/-o $@ $^ $(LIBS)/' "${S}/src/Makefile.in"
}
src_compile() {