diff options
author | 2012-02-16 01:09:52 +0000 | |
---|---|---|
committer | 2012-02-16 01:09:52 +0000 | |
commit | 13b92b31ea7276c6408031e51165759bc8ebbbbf (patch) | |
tree | 1a4ee1ec4bf8d2c47a1be36594450d0f45f03de3 /sys-apps | |
parent | make -> emake. (diff) | |
download | gentoo-2-13b92b31ea7276c6408031e51165759bc8ebbbbf.tar.gz gentoo-2-13b92b31ea7276c6408031e51165759bc8ebbbbf.tar.bz2 gentoo-2-13b92b31ea7276c6408031e51165759bc8ebbbbf.zip |
Stable for HPPA and sed must die() (bug #403737).
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/moreutils/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/moreutils/moreutils-0.45-r1.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/sys-apps/moreutils/ChangeLog b/sys-apps/moreutils/ChangeLog index 02ded22b4b37..304d00c4ff86 100644 --- a/sys-apps/moreutils/ChangeLog +++ b/sys-apps/moreutils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/moreutils # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/ChangeLog,v 1.35 2012/02/15 01:02:01 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/ChangeLog,v 1.36 2012/02/16 01:09:52 jer Exp $ + + 16 Feb 2012; Jeroen Roovers <jer@gentoo.org> moreutils-0.45-r1.ebuild: + Stable for HPPA and sed must die() (bug #403737). 15 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> moreutils-0.45-r1.ebuild: Keyword ~arch for ppc and ppc64 diff --git a/sys-apps/moreutils/moreutils-0.45-r1.ebuild b/sys-apps/moreutils/moreutils-0.45-r1.ebuild index 001d665731f1..6c225314c229 100644 --- a/sys-apps/moreutils/moreutils-0.45-r1.ebuild +++ b/sys-apps/moreutils/moreutils-0.45-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/moreutils-0.45-r1.ebuild,v 1.2 2012/02/15 01:02:01 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/moreutils-0.45-r1.ebuild,v 1.3 2012/02/16 01:09:52 jer Exp $ EAPI=4 inherit eutils toolchain-funcs prefix @@ -11,7 +11,7 @@ SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux" +KEYWORDS="~amd64 hppa ~ppc ~ppc64 ~x86 ~x86-linux" IUSE="+doc +perl" RDEPEND=" @@ -36,12 +36,12 @@ src_prepare() { # Don't build manpages if ! use doc ; then - sed -i -e '/^all:/s/$(MANS)//' -e '/man1/d' Makefile + sed -i -e '/^all:/s/$(MANS)//' -e '/man1/d' Makefile || die fi # Don't install perl scripts if ! use perl ; then - sed -i -e '/PERLSCRIPTS/d' Makefile + sed -i -e '/PERLSCRIPTS/d' Makefile || die fi } |