blob: a938835b8c6e97a3616f244d60860049d0cb8c06 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyorbit/pyorbit-2.14.0.ebuild,v 1.1 2006/04/15 10:19:51 foser Exp $
inherit python gnome2
DESCRIPTION="ORBit2 bindings for Python"
HOMEPAGE="http://www.pygtk.org/"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-lang/python-2.4
>=gnome-base/orbit-2.12"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.12.0"
DOCS="AUTHORS ChangeLog INSTALL NEWS README TODO"
src_unpack() {
unpack ${A}
# disable pyc compiling
mv ${S}/py-compile ${S}/py-compile.orig
ln -s /bin/true ${S}/py-compile
}
src_install() {
gnome2_src_install
python_version
mv ${D}/usr/lib/python${PYVER}/site-packages/CORBA.py \
${D}/usr/lib/python${PYVER}/site-packages/pyorbit_CORBA.py
mv ${D}/usr/lib/python${PYVER}/site-packages/PortableServer.py \
${D}/usr/lib/python${PYVER}/site-packages/pyorbit_PortableServer.py
}
pkg_postinst() {
python_version
python_mod_optimize /usr/lib/python${PYVER}/site-packages
}
pkg_postrm() {
python_version
python_mod_cleanup
}
|