diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-24 23:21:50 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-04-24 23:21:50 +0000 |
commit | d239a81656543e5d0e1cc739a9536be175cd2bc9 (patch) | |
tree | 0b8244ab09e3f50e8fd509a5322e00b7bf81e674 /dev-python | |
parent | small fix (diff) | |
download | gentoo-2-d239a81656543e5d0e1cc739a9536be175cd2bc9.tar.gz gentoo-2-d239a81656543e5d0e1cc739a9536be175cd2bc9.tar.bz2 gentoo-2-d239a81656543e5d0e1cc739a9536be175cd2bc9.zip |
slotify
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pygtk/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/pygtk/files/digest-pygtk-0.6.8-r2 | 1 | ||||
-rw-r--r-- | dev-python/pygtk/pygtk-0.6.8-r2.ebuild | 35 |
3 files changed, 43 insertions, 1 deletions
diff --git a/dev-python/pygtk/ChangeLog b/dev-python/pygtk/ChangeLog index cef1bea04cc1..651646898708 100644 --- a/dev-python/pygtk/ChangeLog +++ b/dev-python/pygtk/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/pygtk # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/ChangeLog,v 1.1 2002/02/01 21:53:28 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/ChangeLog,v 1.2 2002/04/24 23:21:50 spider Exp $ + +*pygtk-1.99.9 (24 Apr 2002) + 24 Apr 2002; Spider <spider@gentoo.org> pygtk-1.99.9.ebuild pygtk-0.6.8-r2.ebuild + Add SLOT + update to gtk2 + *pygtk-0.6.8-r1 (1 Feb 2002) diff --git a/dev-python/pygtk/files/digest-pygtk-0.6.8-r2 b/dev-python/pygtk/files/digest-pygtk-0.6.8-r2 new file mode 100644 index 000000000000..75317f1946ca --- /dev/null +++ b/dev-python/pygtk/files/digest-pygtk-0.6.8-r2 @@ -0,0 +1 @@ +MD5 4a1014123fb0d7fec96a6ae370e17240 pygtk-0.6.8.tar.gz 369795 diff --git a/dev-python/pygtk/pygtk-0.6.8-r2.ebuild b/dev-python/pygtk/pygtk-0.6.8-r2.ebuild new file mode 100644 index 000000000000..acecb43cdc48 --- /dev/null +++ b/dev-python/pygtk/pygtk-0.6.8-r2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Karl Trygve Kalleberg <karltk@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/pygtk-0.6.8-r2.ebuild,v 1.1 2002/04/24 23:21:50 spider Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="GTK+ bindings for Python" + +SRC_URI="ftp://ftp.gtk.org/pub/gtk/python/pygtk-0.6.8.tar.gz" + +HOMEPAGE="http://www.daa.com.au/~james/pygtk/" + +DEPEND="virtual/python + >=gnome-base/libglade-0.17-r1 + >=x11-libs/gtk+-1.2.10-r4" + +SLOT="1.2" +src_compile() { + + ./configure --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --with-libglade-config=/usr/bin/libglade-config \ + --host=${CHOST} || die + emake || die +} + +src_install () { + + make prefix=${D}/usr install || die + +# make DESTDIR=${D} install || die +} + |