blob: fa3af3fc88fa41f8ce041d147de244897a94e01b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/pygtk-0.6.11-r1.ebuild,v 1.5 2004/06/25 03:16:27 agriffis Exp $
inherit python
DESCRIPTION="GTK+ bindings for Python"
HOMEPAGE="http://www.daa.com.au/~james/pygtk/"
SRC_URI="ftp://ftp.gtk.org/pub/gtk/python/v1.2/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="1.2"
KEYWORDS="x86 ~ppc ~sparc ~alpha amd64"
IUSE=""
DEPEND="virtual/python
>=gnome-base/libglade-0.17-r6
>=media-libs/imlib-1.8
>=media-libs/gdk-pixbuf-0.9.0
=x11-libs/gtk+-1.2*
opengl? ( virtual/opengl dev-python/PyOpenGL )"
src_unpack() {
unpack ${A}
# disable pyc compiling
mv ${S}/py-compile ${S}/py-compile.orig
ln -s /bin/true ${S}/py-compile
}
src_compile() {
econf || die "econf failed"
emake || die "make failed"
}
src_install() {
einstall || die
dodoc AUTHORS COPYING ChangeLog INSTALL MAPPING NEWS README TODO
python_version
mv ${D}/usr/lib/python${PYVER}/site-packages/pygtk.py \
${D}/usr/lib/python${PYVER}/site-packages/pygtk.py-1.2
mv ${D}/usr/lib/python${PYVER}/site-packages/pygtk.pth \
${D}/usr/lib/python${PYVER}/site-packages/pygtk.pth-1.2
}
pkg_postinst() {
python_version
python_mod_optimize /usr/share/pygtk/1.2/codegen /usr/lib/python${PYVER}/site-packages/gtk-1.2
alternatives_auto_makesym /usr/lib/python${PYVER}/site-packages/pygtk.py pygtk.py-[0-9].[0-9]
alternatives_auto_makesym /usr/lib/python${PYVER}/site-packages/pygtk.pth pygtk.pth-[0-9].[0-9]
python_mod_compile /usr/lib/python${PYVER}/site-packages/pygtk.py
}
pkg_postrm() {
python_version
python_mod_cleanup /usr/share/pygtk/1.2/codegen
rm -f ${ROOT}/usr/lib/python${PYVER}/site-packages/pygtk.{py,pth}
alternatives_auto_makesym /usr/lib/python${PYVER}/site-packages/pygtk.py pygtk.py-[0-9].[0-9]
alternatives_auto_makesym /usr/lib/python${PYVER}/site-packages/pygtk.pth pygtk.pth-[0-9].[0-9]
python_mod_cleanup
}
|