diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-05-31 15:23:41 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-05-31 15:23:41 +0000 |
commit | 650118f7f28183cdd9251f0e673abc076370f747 (patch) | |
tree | 23c7df78bc0be3690ff8e920acc0233ac721f2a9 /app-shells/sash | |
parent | Stable on x86. (diff) | |
download | gentoo-2-650118f7f28183cdd9251f0e673abc076370f747.tar.gz gentoo-2-650118f7f28183cdd9251f0e673abc076370f747.tar.bz2 gentoo-2-650118f7f28183cdd9251f0e673abc076370f747.zip |
Let portage handle the stripping of binaries.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-shells/sash')
-rw-r--r-- | app-shells/sash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/sash/sash-3.7.ebuild | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app-shells/sash/ChangeLog b/app-shells/sash/ChangeLog index 79bd7eb9bc10..3c6586ec945d 100644 --- a/app-shells/sash/ChangeLog +++ b/app-shells/sash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/sash # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.34 2005/01/02 21:48:35 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/ChangeLog,v 1.35 2005/05/31 15:23:41 swegener Exp $ + + 31 May 2005; Sven Wegener <swegener@gentoo.org> sash-3.7.ebuild: + Let portage handle the stripping of binaries. 02 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> : Change encoding to UTF-8 for GLEP 31 compliance diff --git a/app-shells/sash/sash-3.7.ebuild b/app-shells/sash/sash-3.7.ebuild index 548042647582..7bc972cd34eb 100644 --- a/app-shells/sash/sash-3.7.ebuild +++ b/app-shells/sash/sash-3.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.7.ebuild,v 1.21 2005/04/09 18:47:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.7.ebuild,v 1.22 2005/05/31 15:23:41 swegener Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -14,7 +14,10 @@ KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" IUSE="readline" DEPEND=">=sys-libs/zlib-1.1.4 - readline? ( >=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 )" + readline? ( + >=sys-libs/readline-4.1 + >=sys-libs/ncurses-5.2 + )" RDEPEND="" src_unpack() { @@ -27,7 +30,7 @@ src_unpack() { sed -i \ -e "s:-O3:${CFLAGS}:" \ - -e "/^LDFLAGS /s:$: ${LDFLAGS}:" \ + -e "/^LDFLAGS /s: -s$: ${LDFLAGS}:" \ Makefile || die "sed failed" } |