summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-10-09 20:01:16 +0000
committerMike Frysinger <vapier@gentoo.org>2008-10-09 20:01:16 +0000
commit5474549bb434073c4dbcf934a50e75f193ad0159 (patch)
tree9da7274381a7d5583d3cb94fee232859aa8cfb87 /sys-devel/gnuconfig
parentold (diff)
downloadgentoo-2-5474549bb434073c4dbcf934a50e75f193ad0159.tar.gz
gentoo-2-5474549bb434073c4dbcf934a50e75f193ad0159.tar.bz2
gentoo-2-5474549bb434073c4dbcf934a50e75f193ad0159.zip
Version bump.
(Portage version: 2.2_rc8/cvs/Linux 2.6.26.2 x86_64)
Diffstat (limited to 'sys-devel/gnuconfig')
-rw-r--r--sys-devel/gnuconfig/ChangeLog8
-rw-r--r--sys-devel/gnuconfig/gnuconfig-20080928.ebuild31
2 files changed, 38 insertions, 1 deletions
diff --git a/sys-devel/gnuconfig/ChangeLog b/sys-devel/gnuconfig/ChangeLog
index 1709e4b502d6..e23bec7327b3 100644
--- a/sys-devel/gnuconfig/ChangeLog
+++ b/sys-devel/gnuconfig/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-devel/gnuconfig
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.34 2008/10/09 19:55:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.35 2008/10/09 20:01:16 vapier Exp $
+
+*gnuconfig-20080928 (09 Oct 2008)
+
+ 09 Oct 2008; Mike Frysinger <vapier@gentoo.org>
+ +gnuconfig-20080928.ebuild:
+ Version bump.
09 Oct 2008; Mike Frysinger <vapier@gentoo.org>
+files/99999999/0001-add-uClibc-guess-support.patch,
diff --git a/sys-devel/gnuconfig/gnuconfig-20080928.ebuild b/sys-devel/gnuconfig/gnuconfig-20080928.ebuild
new file mode 100644
index 000000000000..dbc03ec13443
--- /dev/null
+++ b/sys-devel/gnuconfig/gnuconfig-20080928.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/gnuconfig-20080928.ebuild,v 1.1 2008/10/09 20:01:16 vapier Exp $
+
+inherit eutils
+
+DESCRIPTION="Updated config.sub and config.guess file from GNU"
+HOMEPAGE="http://savannah.gnu.org/projects/config"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+IUSE=""
+
+S=${WORKDIR}
+
+src_unpack() {
+ unpack ${A}
+ epatch "${WORKDIR}"/*.patch
+ use elibc_uclibc && sed -i 's:linux-gnu:linux-uclibc:' testsuite/config-guess.data #180637
+}
+
+src_compile() { :;}
+
+src_install() {
+ insinto /usr/share/${PN}
+ doins config.{sub,guess} || die
+ fperms +x /usr/share/${PN}/config.{sub,guess}
+ dodoc ChangeLog
+}