diff options
author | 2012-03-03 22:24:58 +0000 | |
---|---|---|
committer | 2012-03-03 22:24:58 +0000 | |
commit | b533cfcb61f2806cb0f34b34dad6b48d67c863f6 (patch) | |
tree | 0735ad4659a1d1fb8c28467866c65a3a3b9bd2f9 /sys-devel/gnuconfig/gnuconfig-20120116.ebuild | |
parent | Stabilize for all. (diff) | |
download | gentoo-2-b533cfcb61f2806cb0f34b34dad6b48d67c863f6.tar.gz gentoo-2-b533cfcb61f2806cb0f34b34dad6b48d67c863f6.tar.bz2 gentoo-2-b533cfcb61f2806cb0f34b34dad6b48d67c863f6.zip |
Version bump.
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel/gnuconfig/gnuconfig-20120116.ebuild')
-rw-r--r-- | sys-devel/gnuconfig/gnuconfig-20120116.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sys-devel/gnuconfig/gnuconfig-20120116.ebuild b/sys-devel/gnuconfig/gnuconfig-20120116.ebuild new file mode 100644 index 000000000000..5268eed4fb69 --- /dev/null +++ b/sys-devel/gnuconfig/gnuconfig-20120116.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-20120116.ebuild,v 1.1 2012/03/03 22:24:58 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 ~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-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 +} |