diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-10-11 16:08:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-10-11 16:08:45 +0000 |
commit | 9547053380f9258180a3b96f70c00fbb305e3c7f (patch) | |
tree | 3f4b1ef4ca0f6bf289a89db2379a8c4c03cdf206 /sys-devel/gnuconfig | |
parent | Fix white artifacts in remmina, bug 437918 by Ben Kohler. (diff) | |
download | gentoo-2-9547053380f9258180a3b96f70c00fbb305e3c7f.tar.gz gentoo-2-9547053380f9258180a3b96f70c00fbb305e3c7f.tar.bz2 gentoo-2-9547053380f9258180a3b96f70c00fbb305e3c7f.zip |
Version bump.
(Portage version: 2.2.0_alpha131/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel/gnuconfig')
-rw-r--r-- | sys-devel/gnuconfig/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/gnuconfig/gnuconfig-20121010.ebuild | 62 |
2 files changed, 68 insertions, 1 deletions
diff --git a/sys-devel/gnuconfig/ChangeLog b/sys-devel/gnuconfig/ChangeLog index 029e83b666d0..f4230acff135 100644 --- a/sys-devel/gnuconfig/ChangeLog +++ b/sys-devel/gnuconfig/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/gnuconfig # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.66 2012/10/01 04:59:11 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.67 2012/10/11 16:08:45 vapier Exp $ + +*gnuconfig-20121010 (11 Oct 2012) + + 11 Oct 2012; Mike Frysinger <vapier@gentoo.org> +gnuconfig-20121010.ebuild: + Version bump. 01 Oct 2012; Mike Frysinger <vapier@gentoo.org> gnuconfig-20120818.ebuild: Stabilize for all #436694. diff --git a/sys-devel/gnuconfig/gnuconfig-20121010.ebuild b/sys-devel/gnuconfig/gnuconfig-20121010.ebuild new file mode 100644 index 000000000000..a3fb14b96410 --- /dev/null +++ b/sys-devel/gnuconfig/gnuconfig-20121010.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/gnuconfig-20121010.ebuild,v 1.1 2012/10/11 16:08:45 vapier Exp $ + +EAPI="2" + +inherit eutils +if [[ ${PV} == "99999999" ]] ; then + EGIT_REPO_URI="git://git.savannah.gnu.org/config.git + http://git.savannah.gnu.org/r/config.git" + + inherit git-2 +else + SRC_URI="mirror://gentoo/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi + +DESCRIPTION="Updated config.sub and config.guess file from GNU" +HOMEPAGE="http://savannah.gnu.org/projects/config" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +S=${WORKDIR} + +maint_pkg_create() { + cd "${S}" + + local ver=$(gawk '{ gsub(/-/, "", $1); print $1; exit }' ChangeLog) + [[ ${#ver} != 8 ]] && die "invalid version '${ver}'" + + cp "${FILESDIR}"/${PV}/*.patch . || die + + local tar="${T}/gnuconfig-${ver}.tar.bz2" + tar -jcf ${tar} . || die "creating tar failed" + einfo "Packaged tar now available:" + einfo "$(du -b ${tar})" +} + +src_unpack() { + if [[ ${PV} == "99999999" ]] ; then + git-2_src_unpack + maint_pkg_create + else + unpack ${A} + fi +} + +src_prepare() { + 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 +} |