diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2007-07-15 02:49:26 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2007-07-15 02:49:26 +0000 |
commit | 5b219ac7350fb2bc9820b6671049dbc712df4425 (patch) | |
tree | e58cd066f4d31fcc2aeb53e695e8d0412dcbe88d /dev-python/rhpl | |
parent | Bump. (diff) | |
download | historical-5b219ac7350fb2bc9820b6671049dbc712df4425.tar.gz historical-5b219ac7350fb2bc9820b6671049dbc712df4425.tar.bz2 historical-5b219ac7350fb2bc9820b6671049dbc712df4425.zip |
Bump. Translation/gettext updates, PS3 support, and more.
Package-Manager: portage-2.1.3_rc8
Diffstat (limited to 'dev-python/rhpl')
-rw-r--r-- | dev-python/rhpl/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/rhpl/files/digest-rhpl-0.208 | 3 | ||||
-rw-r--r-- | dev-python/rhpl/rhpl-0.208.ebuild | 49 |
3 files changed, 59 insertions, 2 deletions
diff --git a/dev-python/rhpl/ChangeLog b/dev-python/rhpl/ChangeLog index 5f15a9a97f09..bf3c1da7a485 100644 --- a/dev-python/rhpl/ChangeLog +++ b/dev-python/rhpl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/rhpl -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rhpl/ChangeLog,v 1.1 2006/09/05 20:59:07 dberkholz Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rhpl/ChangeLog,v 1.2 2007/07/15 02:49:26 dberkholz Exp $ + +*rhpl-0.208 (15 Jul 2007) + + 15 Jul 2007; Donnie Berkholz <dberkholz@gentoo.org>; +rhpl-0.208.ebuild: + Bump. Translation/gettext updates, PS3 support, and more. *rhpl-0.188 (05 Sep 2006) diff --git a/dev-python/rhpl/files/digest-rhpl-0.208 b/dev-python/rhpl/files/digest-rhpl-0.208 new file mode 100644 index 000000000000..eeba6aedecce --- /dev/null +++ b/dev-python/rhpl/files/digest-rhpl-0.208 @@ -0,0 +1,3 @@ +MD5 0e3dc2990ae2f36cb182c087c0120ec5 rhpl-0.208-2.src.rpm 304448 +RMD160 60cfbc0cc04c6ecd3c33e994c49520d06c3a162b rhpl-0.208-2.src.rpm 304448 +SHA256 d7d509eb973e1c54501ea881727c89e2c8b3f1e4b6701045f7639e68512338e6 rhpl-0.208-2.src.rpm 304448 diff --git a/dev-python/rhpl/rhpl-0.208.ebuild b/dev-python/rhpl/rhpl-0.208.ebuild new file mode 100644 index 000000000000..353ef509a0b6 --- /dev/null +++ b/dev-python/rhpl/rhpl-0.208.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rhpl/rhpl-0.208.ebuild,v 1.1 2007/07/15 02:49:26 dberkholz Exp $ + +inherit eutils multilib python rpm toolchain-funcs + +# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source +# tarball out of it +RPMREV="2" + +DESCRIPTION="Library of python code used by Red Hat Linux programs" +HOMEPAGE="http://fedora.redhat.com/projects/config-tools/" +SRC_URI="mirror://fedora/development/source/SRPMS/${P}-${RPMREV}.src.rpm" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="" +RDEPEND="dev-lang/python + !<sys-libs/libkudzu-1.2" +DEPEND="${RDEPEND} + !s390? ( >=net-wireless/wireless-tools-28 ) + sys-devel/gettext" + +src_unpack() { + rpm_src_unpack +# epatch "${FILESDIR}"/${PV}-use-raw-strings-for-gettext.diff + + sed -i \ + -e 's:gcc:$(CC):g' \ + "${S}"/src/Makefile +} + +src_compile() { + python_version + emake \ + PYTHON=python${PYVER} \ + LIBDIR=$(get_libdir) \ + ARCH=${ARCH} \ + CC=$(tc-getCC) \ + || die "emake failed" +} + +src_install() { + emake \ + DESTDIR="${D}" \ + PYTHON=python${PYVER} \ + LIBDIR=$(get_libdir) \ + install || die "emake install failed" +} |