diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-08-15 03:27:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-08-15 03:27:27 +0000 |
commit | b23f503a1bb1be8b749b28f42dcba2b5e3c34841 (patch) | |
tree | 2cea54f3d6a0a50440d97e9e16d935e4d60fe059 /sys-devel/gnuconfig | |
parent | Update patches to latest git tree. (diff) | |
download | gentoo-2-b23f503a1bb1be8b749b28f42dcba2b5e3c34841.tar.gz gentoo-2-b23f503a1bb1be8b749b28f42dcba2b5e3c34841.tar.bz2 gentoo-2-b23f503a1bb1be8b749b28f42dcba2b5e3c34841.zip |
Update snapshot.
(Portage version: 2.2.0_alpha46/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-20110814.ebuild | 60 |
2 files changed, 66 insertions, 1 deletions
diff --git a/sys-devel/gnuconfig/ChangeLog b/sys-devel/gnuconfig/ChangeLog index 4db254cfba04..1a2597328d8e 100644 --- a/sys-devel/gnuconfig/ChangeLog +++ b/sys-devel/gnuconfig/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/gnuconfig # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.57 2011/08/15 03:26:20 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/ChangeLog,v 1.58 2011/08/15 03:27:27 vapier Exp $ + +*gnuconfig-20110814 (15 Aug 2011) + + 15 Aug 2011; Mike Frysinger <vapier@gentoo.org> +gnuconfig-20110814.ebuild: + Update snapshot. 15 Aug 2011; Mike Frysinger <vapier@gentoo.org> files/99999999/0001-add-uClibc-guess-support.patch, diff --git a/sys-devel/gnuconfig/gnuconfig-20110814.ebuild b/sys-devel/gnuconfig/gnuconfig-20110814.ebuild new file mode 100644 index 000000000000..7426ea64c0f2 --- /dev/null +++ b/sys-devel/gnuconfig/gnuconfig-20110814.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gnuconfig/gnuconfig-20110814.ebuild,v 1.1 2011/08/15 03:27:27 vapier Exp $ + +EAPI="2" + +inherit eutils +if [[ ${PV} == "99999999" ]] ; then + EGIT_REPO_URI="git://git.savannah.gnu.org/config.git" + inherit git +else + SRC_URI="mirror://gentoo/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~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=$(head -n 1 ChangeLog | awk '{print $1}' | sed -e 's:-::g') + [[ ${#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_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 +} |