summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-03-02 06:19:06 +0000
committerMike Frysinger <vapier@gentoo.org>2006-03-02 06:19:06 +0000
commit6fcc60fb30edbc57e2e0efa3e25ea4d7acfbb5e7 (patch)
treeb23a459e0033ecb2d870732090a39d5689b15b98 /sys-devel/gnuconfig
parentold (diff)
downloadgentoo-2-6fcc60fb30edbc57e2e0efa3e25ea4d7acfbb5e7.tar.gz
gentoo-2-6fcc60fb30edbc57e2e0efa3e25ea4d7acfbb5e7.tar.bz2
gentoo-2-6fcc60fb30edbc57e2e0efa3e25ea4d7acfbb5e7.zip
Version bump.
(Portage version: 2.1_pre5-r1)
Diffstat (limited to 'sys-devel/gnuconfig')
-rw-r--r--sys-devel/gnuconfig/ChangeLog10
-rw-r--r--sys-devel/gnuconfig/files/digest-gnuconfig-200602273
-rw-r--r--sys-devel/gnuconfig/gnuconfig-20060227.ebuild30
3 files changed, 41 insertions, 2 deletions
diff --git a/sys-devel/gnuconfig/ChangeLog b/sys-devel/gnuconfig/ChangeLog
index ac5c9b9464b7..e142eb2d0209 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.23 2005/12/30 23:51:20 vapier Exp $
+# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.24 2006/03/02 06:19:06 vapier Exp $
+
+*gnuconfig-20060227 (02 Mar 2006)
+
+ 02 Mar 2006; Mike Frysinger <vapier@gentoo.org>
+ +gnuconfig-20060227.ebuild:
+ Version bump.
*gnuconfig-20051223 (30 Dec 2005)
diff --git a/sys-devel/gnuconfig/files/digest-gnuconfig-20060227 b/sys-devel/gnuconfig/files/digest-gnuconfig-20060227
new file mode 100644
index 000000000000..98b958ed0289
--- /dev/null
+++ b/sys-devel/gnuconfig/files/digest-gnuconfig-20060227
@@ -0,0 +1,3 @@
+MD5 85186b69b31b6012754e1ac90e80f6aa gnuconfig-20060227.tar.bz2 39356
+RMD160 a113796d71718e718663bb2ffc20a50503c83078 gnuconfig-20060227.tar.bz2 39356
+SHA256 4a1da7580968d4805785db78522948c7010532fbb7221b2e6203c37f638babe8 gnuconfig-20060227.tar.bz2 39356
diff --git a/sys-devel/gnuconfig/gnuconfig-20060227.ebuild b/sys-devel/gnuconfig/gnuconfig-20060227.ebuild
new file mode 100644
index 000000000000..13e671078d29
--- /dev/null
+++ b/sys-devel/gnuconfig/gnuconfig-20060227.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/gnuconfig-20060227.ebuild,v 1.1 2006/03/02 06:19:06 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 ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+
+S=${WORKDIR}
+
+src_unpack() {
+ unpack ${A}
+ epatch "${WORKDIR}"/*.patch
+}
+
+src_compile() { :;}
+
+src_install() {
+ insinto /usr/share/${PN}
+ doins config.{sub,guess} || die
+ fperms +x /usr/share/${PN}/config.{sub,guess}
+ dodoc ChangeLog
+}