summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-07 23:17:05 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-07 23:17:05 +0000
commite6710dc8ef81b5e4a9b09ea144693278d8687e89 (patch)
tree0a3bcee7898d1d92255eeba814cda2ef6c4f239e /sys-devel/gnuconfig
parentold (diff)
downloadgentoo-2-e6710dc8ef81b5e4a9b09ea144693278d8687e89.tar.gz
gentoo-2-e6710dc8ef81b5e4a9b09ea144693278d8687e89.tar.bz2
gentoo-2-e6710dc8ef81b5e4a9b09ea144693278d8687e89.zip
Sync with latest cvs and add patch to support more superh targets.
(Portage version: 2.0.53)
Diffstat (limited to 'sys-devel/gnuconfig')
-rw-r--r--sys-devel/gnuconfig/ChangeLog8
-rw-r--r--sys-devel/gnuconfig/files/digest-gnuconfig-200511131
-rw-r--r--sys-devel/gnuconfig/gnuconfig-20051113.ebuild34
3 files changed, 42 insertions, 1 deletions
diff --git a/sys-devel/gnuconfig/ChangeLog b/sys-devel/gnuconfig/ChangeLog
index dbde05002ed3..0d6af7e4d419 100644
--- a/sys-devel/gnuconfig/ChangeLog
+++ b/sys-devel/gnuconfig/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-devel/gnuconfig
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.21 2005/06/16 23:01:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.22 2005/12/07 23:17:05 vapier Exp $
+
+*gnuconfig-20051113 (07 Dec 2005)
+
+ 07 Dec 2005; Mike Frysinger <vapier@gentoo.org>
+ +gnuconfig-20051113.ebuild:
+ Sync with latest cvs and add patch to support more superh targets.
*gnuconfig-20050602 (16 Jun 2005)
diff --git a/sys-devel/gnuconfig/files/digest-gnuconfig-20051113 b/sys-devel/gnuconfig/files/digest-gnuconfig-20051113
new file mode 100644
index 000000000000..bc9faaa1a7f9
--- /dev/null
+++ b/sys-devel/gnuconfig/files/digest-gnuconfig-20051113
@@ -0,0 +1 @@
+MD5 bbb62feefa6c0f5c5fab2811ec99503e gnuconfig-20051113.tar.bz2 38144
diff --git a/sys-devel/gnuconfig/gnuconfig-20051113.ebuild b/sys-devel/gnuconfig/gnuconfig-20051113.ebuild
new file mode 100644
index 000000000000..dd51fc4fcf15
--- /dev/null
+++ b/sys-devel/gnuconfig/gnuconfig-20051113.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/gnuconfig-20051113.ebuild,v 1.1 2005/12/07 23:17:05 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 ppc-macos s390 sh sparc x86"
+IUSE=""
+
+S=${WORKDIR}
+
+src_unpack() {
+ unpack ${A}
+ epatch "${WORKDIR}"/*.patch
+}
+
+src_compile() { :;}
+
+src_test() {
+ make SHELL=/bin/sh check || die "make check failed :("
+}
+
+src_install() {
+ insinto /usr/share/${PN}
+ doins config.{sub,guess} || die
+ fperms +x /usr/share/${PN}/config.{sub,guess}
+ dodoc ChangeLog
+}