diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-27 19:32:37 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-27 19:32:37 +0000 |
commit | 7243b017d07e1a8f366233a1b003a6f6123bdcca (patch) | |
tree | 1c77e083d70de97aa922b8300ce98e7fae57f78a /sys-apps/sed | |
parent | (Manifest recommit) (diff) | |
download | gentoo-2-7243b017d07e1a8f366233a1b003a6f6123bdcca.tar.gz gentoo-2-7243b017d07e1a8f366233a1b003a6f6123bdcca.tar.bz2 gentoo-2-7243b017d07e1a8f366233a1b003a6f6123bdcca.zip |
QA - fix use invocation. Run gnuconfig_update everywhere instead of just on mips. Mark 4.0.9 stable on x86 and ia64.
Diffstat (limited to 'sys-apps/sed')
-rw-r--r-- | sys-apps/sed/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/sed/sed-4.0.5.ebuild | 6 | ||||
-rw-r--r-- | sys-apps/sed/sed-4.0.7.ebuild | 10 | ||||
-rw-r--r-- | sys-apps/sed/sed-4.0.8.ebuild | 10 | ||||
-rw-r--r-- | sys-apps/sed/sed-4.0.9.ebuild | 8 |
5 files changed, 23 insertions, 18 deletions
diff --git a/sys-apps/sed/ChangeLog b/sys-apps/sed/ChangeLog index 3c94a5899d87..e661f5b8c36b 100644 --- a/sys-apps/sed/ChangeLog +++ b/sys-apps/sed/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/sed # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/ChangeLog,v 1.48 2004/06/24 22:25:50 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/ChangeLog,v 1.49 2004/06/27 19:32:37 agriffis Exp $ + + 27 Jun 2004; Aron Griffis <agriffis@gentoo.org> sed-4.0.5.ebuild, + sed-4.0.7.ebuild, sed-4.0.8.ebuild, sed-4.0.9.ebuild: + QA - fix use invocation. Run gnuconfig_update everywhere instead of just on + mips. Mark 4.0.9 stable on x86 and ia64. 11 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> sed-4.0.9.ebuild: Stable on alpha. diff --git a/sys-apps/sed/sed-4.0.5.ebuild b/sys-apps/sed/sed-4.0.5.ebuild index 385d87a55c5c..bcabd59f5e0b 100644 --- a/sys-apps/sed/sed-4.0.5.ebuild +++ b/sys-apps/sed/sed-4.0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.5.ebuild,v 1.14 2004/06/24 22:25:50 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.5.ebuild,v 1.15 2004/06/27 19:32:37 agriffis Exp $ DESCRIPTION="Super-useful stream editor" SRC_URI="mirror://gnu/sed/${P}.tar.gz" @@ -17,7 +17,7 @@ RDEPEND="virtual/glibc" src_compile() { econf `use_enable nls` || die - if [ `use static` ] ; then + if use static ; then emake || die else emake LDFLAGS=-static || die @@ -29,7 +29,7 @@ src_install() { dobin sed/sed dodir /usr/bin dosym ../../bin/sed /usr/bin/sed - if [ -z "`use build`" ] + if ! use build then into /usr doinfo doc/sed.info* diff --git a/sys-apps/sed/sed-4.0.7.ebuild b/sys-apps/sed/sed-4.0.7.ebuild index c56c8a5231b4..21b8e7a9e366 100644 --- a/sys-apps/sed/sed-4.0.7.ebuild +++ b/sys-apps/sed/sed-4.0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.7.ebuild,v 1.15 2004/06/24 22:25:50 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.7.ebuild,v 1.16 2004/06/27 19:32:37 agriffis Exp $ inherit gnuconfig @@ -19,15 +19,15 @@ DEPEND="virtual/glibc src_compile() { local myconf - # Allow sed to detect mips systems properly - use mips && gnuconfig_update + # Needed for mips and probably others + gnuconfig_update use nls \ && myconf="${myconf} --enable-nls" \ || myconf="${myconf} --disable-nls" econf ${myconf} || die "Configure failed" - if [ -z `use static` ] ; then + if ! use static ; then emake || die "Shared build failed" else emake LDFLAGS=-static || die "Static build failed" @@ -37,7 +37,7 @@ src_compile() { src_install() { into / dobin sed/sed - if [ -z "`use build`" ] + if ! use build then einstall || die "Install failed" dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS ANNOUNCE ChangeLog diff --git a/sys-apps/sed/sed-4.0.8.ebuild b/sys-apps/sed/sed-4.0.8.ebuild index c0ba356bc1f6..2062668cf903 100644 --- a/sys-apps/sed/sed-4.0.8.ebuild +++ b/sys-apps/sed/sed-4.0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.8.ebuild,v 1.9 2004/06/24 22:25:50 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.8.ebuild,v 1.10 2004/06/27 19:32:37 agriffis Exp $ inherit gnuconfig @@ -19,15 +19,15 @@ DEPEND="virtual/glibc src_compile() { local myconf - # Allow sed to detect mips systems properly - use mips && gnuconfig_update + # Needed for mips and probably others + gnuconfig_update use nls \ && myconf="${myconf} --enable-nls" \ || myconf="${myconf} --disable-nls" econf ${myconf} || die "Configure failed" - if [ -z `use static` ] ; then + if ! use static ; then emake || die "Shared build failed" else emake LDFLAGS=-static || die "Static build failed" @@ -37,7 +37,7 @@ src_compile() { src_install() { into / dobin sed/sed - if [ -z "`use build`" ] + if ! use build then einstall || die "Install failed" dodoc COPYING NEWS README* THANKS TODO AUTHORS BUGS ANNOUNCE ChangeLog diff --git a/sys-apps/sed/sed-4.0.9.ebuild b/sys-apps/sed/sed-4.0.9.ebuild index 473cc92e40fd..8d485273c337 100644 --- a/sys-apps/sed/sed-4.0.9.ebuild +++ b/sys-apps/sed/sed-4.0.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.9.ebuild,v 1.9 2004/06/24 22:25:50 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.9.ebuild,v 1.10 2004/06/27 19:32:37 agriffis Exp $ inherit gnuconfig @@ -10,15 +10,15 @@ SRC_URI="mirror://gnu/sed/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc ~ppc64 ~sparc ~mips alpha arm ~hppa amd64 ~ia64 s390" +KEYWORDS="x86 ~ppc ~ppc64 ~sparc ~mips alpha arm ~hppa amd64 ia64 s390" IUSE="nls static build" DEPEND="virtual/glibc nls? ( sys-devel/gettext )" src_compile() { - # Allow sed to detect mips systems properly - use mips && gnuconfig_update + # Needed for mips and probably others + gnuconfig_update econf `use_enable nls` || die "Configure failed" if use static ; then |