diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2008-11-24 16:06:18 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2008-11-24 16:06:18 +0000 |
commit | 18a0d87d491bc0d9e902c1d2c461647595c3f281 (patch) | |
tree | 920bb9e54f84f07dd3c88597630682d71d52017b /x11-plugins/wmail/wmail-2.0-r3.ebuild | |
parent | Re-assign to freedesktop herd. (diff) | |
download | gentoo-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/wmail-2.0-r3.ebuild')
-rw-r--r-- | x11-plugins/wmail/wmail-2.0-r3.ebuild | 12 |
1 files changed, 9 insertions, 3 deletions
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() { |