diff options
author | Peter Volkov <pva@gentoo.org> | 2009-01-27 08:34:17 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2009-01-27 08:34:17 +0000 |
commit | 76d2e0f9153361277226602500d391a63247d9d4 (patch) | |
tree | 1d5d77d80093096e9db156c4e2676b53915f2920 /app-text/reed/reed-5.4.ebuild | |
parent | Version bump. Don't pre-stripped executable, bug #241242, thank Diego E. 'Fla... (diff) | |
download | gentoo-2-76d2e0f9153361277226602500d391a63247d9d4.tar.gz gentoo-2-76d2e0f9153361277226602500d391a63247d9d4.tar.bz2 gentoo-2-76d2e0f9153361277226602500d391a63247d9d4.zip |
Respect LDFLAGS. Don't install wrap, as it collides with talkfilters, bug #247396, thank Diego E. 'Flameeyes' Pettenò for report.
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'app-text/reed/reed-5.4.ebuild')
-rw-r--r-- | app-text/reed/reed-5.4.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app-text/reed/reed-5.4.ebuild b/app-text/reed/reed-5.4.ebuild index 52681c1ed760..6bc5b973c5c5 100644 --- a/app-text/reed/reed-5.4.ebuild +++ b/app-text/reed/reed-5.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/reed/reed-5.4.ebuild,v 1.9 2008/12/30 21:29:30 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/reed/reed-5.4.ebuild,v 1.10 2009/01/27 08:34:17 pva Exp $ inherit toolchain-funcs @@ -17,8 +17,12 @@ DEPEND="sys-libs/ncurses" src_unpack() { unpack ${A} - sed -i -e "s:-O2:${CFLAGS}:" \ - -e "s:-s::" "${S}"/Makefile.in + cd "${S}" + + sed -e "s:-O2:${CFLAGS} ${LDFLAGS}:" \ + -e "s: wrap::" \ + -e "s:-s reed:reed:" -i Makefile.in + rm wrap.1 # Collision with talkfilters, bug #247396 } src_compile() { |