diff options
author | 2005-05-31 15:23:41 +0000 | |
---|---|---|
committer | 2005-05-31 15:23:41 +0000 | |
commit | 3416e6d93f5f0ea6ecda946e3169ac5a6033a238 (patch) | |
tree | 42f1ecd547d3e8cbc1e3075774b51c4ee0480ab0 /app-shells/sash | |
parent | header fix (diff) | |
download | historical-3416e6d93f5f0ea6ecda946e3169ac5a6033a238.tar.gz historical-3416e6d93f5f0ea6ecda946e3169ac5a6033a238.tar.bz2 historical-3416e6d93f5f0ea6ecda946e3169ac5a6033a238.zip |
Let portage handle the stripping of binaries.
Package-Manager: portage-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/Manifest | 18 | ||||
-rw-r--r-- | app-shells/sash/sash-3.7.ebuild | 9 |
3 files changed, 24 insertions, 8 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/Manifest b/app-shells/sash/Manifest index 70ad1da619fd..3ee7ae8fa149 100644 --- a/app-shells/sash/Manifest +++ b/app-shells/sash/Manifest @@ -1,6 +1,16 @@ -MD5 8eaa8f91f8cbfc08883e4f525e901b0a ChangeLog 3897 -MD5 0cdc80b0c10da0cce4988365bd129594 sash-3.7.ebuild 1129 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 22ed471970f155703b2d4028f2ec6a5a sash-3.7.ebuild 1139 +MD5 26bb0155523835e427e7834d61e17d93 ChangeLog 4014 MD5 e8758a0d35504ea0420262b58acc5a62 files/sash-3.6-fix-includes.patch 334 -MD5 d33602f9d3d89db4b3ea2adad619fdf2 files/sash-3.6-readline.patch 7507 -MD5 ed10e67a2e293993478c999f67c612b8 files/digest-sash-3.7 59 MD5 0fa262804299a7ba80c5266f578722eb files/sash-3.7-builtin.patch 465 +MD5 ed10e67a2e293993478c999f67c612b8 files/digest-sash-3.7 59 +MD5 d33602f9d3d89db4b3ea2adad619fdf2 files/sash-3.6-readline.patch 7507 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.1 (GNU/Linux) + +iD8DBQFCnIGVI1lqEGTUzyQRAu6/AKCHzls61dZ2DFnpwdQ+el2KrhHh0QCdHE72 +NLNzPtsmTECaTwQaiWqXLeA= +=KzQh +-----END PGP SIGNATURE----- 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" } |