diff options
author | Jon Nelson <jnelson@gentoo.org> | 2002-08-02 02:08:11 +0000 |
---|---|---|
committer | Jon Nelson <jnelson@gentoo.org> | 2002-08-02 02:08:11 +0000 |
commit | b2a11d1ca7642210bd7aedbb7841a3c91f01ac54 (patch) | |
tree | d0a926636f01ebac31699d716ee354257f4f0862 /dev-python/gnome-python | |
parent | add 1.6.1-r1 which should be repoman-clean, and it uses distutils.eclass (diff) | |
download | gentoo-2-b2a11d1ca7642210bd7aedbb7841a3c91f01ac54.tar.gz gentoo-2-b2a11d1ca7642210bd7aedbb7841a3c91f01ac54.tar.bz2 gentoo-2-b2a11d1ca7642210bd7aedbb7841a3c91f01ac54.zip |
new upstream (1.4.2) and fix repoman errors in new 1.4.2 ebuild
Diffstat (limited to 'dev-python/gnome-python')
-rw-r--r-- | dev-python/gnome-python/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/gnome-python/files/digest-gnome-python-1.4.2 | 1 | ||||
-rw-r--r-- | dev-python/gnome-python/gnome-python-1.4.2.ebuild | 56 |
3 files changed, 65 insertions, 1 deletions
diff --git a/dev-python/gnome-python/ChangeLog b/dev-python/gnome-python/ChangeLog index 1074b296bf7f..28fc6394d42a 100644 --- a/dev-python/gnome-python/ChangeLog +++ b/dev-python/gnome-python/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-python/gnome-python # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python/ChangeLog,v 1.3 2002/07/27 19:23:31 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python/ChangeLog,v 1.4 2002/08/02 02:08:11 jnelson Exp $ + +*gnome-python-1.4.2 (1 Aug 2002) + + 1 Aug 2002; Jon Nelson <jnelson@gentoo.org> gnome-python-1.4.2.ebuild: + New upstream + Fix repoman errors that are in 1.4.1* in 1.4.2 - if 1.4.2 goes + off OK, 1.4.1* should be removed. *gnome-python-1.4.1-r4 (28 Feb 2002) diff --git a/dev-python/gnome-python/files/digest-gnome-python-1.4.2 b/dev-python/gnome-python/files/digest-gnome-python-1.4.2 new file mode 100644 index 000000000000..b7ac47bbaa3c --- /dev/null +++ b/dev-python/gnome-python/files/digest-gnome-python-1.4.2 @@ -0,0 +1 @@ +MD5 a30fb606888a66bc52f595117c230eaf gnome-python-1.4.2.tar.gz 662706 diff --git a/dev-python/gnome-python/gnome-python-1.4.2.ebuild b/dev-python/gnome-python/gnome-python-1.4.2.ebuild new file mode 100644 index 000000000000..8480e06345f5 --- /dev/null +++ b/dev-python/gnome-python/gnome-python-1.4.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python/gnome-python-1.4.2.ebuild,v 1.1 2002/08/02 02:08:11 jnelson Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="gnome-python" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/latest/sources/${P}.tar.gz" +HOMEPAGE="http://www.daa.com.au/~james/gnome/" + +DEPEND="virtual/python + =x11-libs/gtk+-1.2* + >=media-libs/imlib-1.9.10-r1 + gnome? ( >=gnome-base/gnome-libs-1.4.1.2-r1 + <gnome-base/libglade-1.90.0 + <gnome-base/control-center-1.90.0 ) + opengl? ( <x11-libs/gtkglarea-1.99.0 )" +RDEPEND="${RDEPEND}" + +SLOT="0" +KEYWORDS="x86" +LICENSE="GPL-2" + +src_compile() { + if [ -n "`use gnome`" ] + then + CFLAGS="${CFLAGS} `gnome-config capplet --cflags`" \ + econf ${myopts} || die + else + cd ${S}/pygtk + econf ${myopts} || die + fi + make || die +} + +src_install() { + + if [ -n "`use gnome`" ] + then + cd ${S}/pygnome + make prefix=${D}/usr datadir=${D}/usr/share install || die + + dodoc AUTHORS COPYING* ChangeLog NEWS MAPPING + dodoc README* + + cd ${S}/pygnome + docinto pygnome + dodoc COPYING + fi + + cd ${S}/pygtk + make prefix=${D}/usr datadir=${D}/usr/share install || die + + cd ${S}/pygtk + docinto pygtk + dodoc AUTHORS COPYING ChangeLog NEWS MAPPING README +} |