diff options
author | Ned Ludd <solar@gentoo.org> | 2004-06-15 07:03:33 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2004-06-15 07:03:33 +0000 |
commit | 9887dcbfe5e75fcc137c8cf11eee10ecae45f85d (patch) | |
tree | ccd5478375dc0db4732a8c93cf167dedcfa4a0a8 /sys-apps/gawk | |
parent | remove unneeded /etc/nsswitch.conf with USE=uclibc (diff) | |
download | historical-9887dcbfe5e75fcc137c8cf11eee10ecae45f85d.tar.gz historical-9887dcbfe5e75fcc137c8cf11eee10ecae45f85d.tar.bz2 historical-9887dcbfe5e75fcc137c8cf11eee10ecae45f85d.zip |
run gnuconfig_update when using uclibc
Diffstat (limited to 'sys-apps/gawk')
-rw-r--r-- | sys-apps/gawk/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/gawk/gawk-3.1.3-r1.ebuild | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/sys-apps/gawk/ChangeLog b/sys-apps/gawk/ChangeLog index c044c93bdc96..ab818d987d9f 100644 --- a/sys-apps/gawk/ChangeLog +++ b/sys-apps/gawk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/gawk # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/ChangeLog,v 1.38 2004/04/26 02:40:04 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/ChangeLog,v 1.39 2004/06/15 07:03:33 solar Exp $ + + 15 Jun 2004; <solar@gentoo.org> gawk-3.1.3-r1.ebuild: + run gnuconfig_update when using uclibc 25 Apr 2004; Tom Gall <tgall@gentoo.org> gawk-3.1.3-r1.ebuild: fix bug 48990 -- affects all 64 bit architectures diff --git a/sys-apps/gawk/gawk-3.1.3-r1.ebuild b/sys-apps/gawk/gawk-3.1.3-r1.ebuild index b081da5ded52..eda7081b568c 100644 --- a/sys-apps/gawk/gawk-3.1.3-r1.ebuild +++ b/sys-apps/gawk/gawk-3.1.3-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.3-r1.ebuild,v 1.10 2004/04/26 02:40:04 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.1.3-r1.ebuild,v 1.11 2004/06/15 07:03:33 solar Exp $ -inherit eutils +inherit eutils gnuconfig DESCRIPTION="GNU awk pattern-matching language" HOMEPAGE="http://www.gnu.org/software/gawk/gawk.html" @@ -11,7 +11,7 @@ SRC_URI="ftp://gatekeeper.dec.com/pub/GNU/gawk/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc ppc64 sparc mips alpha arm hppa amd64 ia64 s390" -IUSE="nls build" +IUSE="nls build uclibc" DEPEND="virtual/glibc nls? ( sys-devel/gettext )" @@ -29,6 +29,8 @@ src_unpack() { } src_compile() { + use uclibc && gnuconfig_update + local myconf= use nls || myconf="${myconf} --disable-nls" [ -z "${CBUILD}" ] || myconf="${myconf} --build=${CBUILD}" |