blob: fca3a2f9c7c0454f9b2ba2200c510d836bb6091a (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/pessulus/pessulus-2.26.2.ebuild,v 1.9 2010/07/20 01:56:01 jer Exp $
inherit gnome2 python
DESCRIPTION="Lockdown editor for GNOME"
HOMEPAGE="http://live.gnome.org/Pessulus"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-python/pygtk-2.6.0
>=dev-python/libgnome-python-2.6.0
>=dev-python/gconf-python-2.6.0
>=dev-python/bug-buddy-python-2.22
>=gnome-base/gconf-2"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
>=dev-util/intltool-0.35"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO"
src_unpack() {
gnome2_src_unpack
# disable pyc compiling
mv "${S}"/py-compile "${S}"/py-compile.orig
ln -s $(type -P true) "${S}"/py-compile
}
pkg_postinst() {
gnome2_pkg_postinst
python_need_rebuild
python_mod_optimize $(python_get_sitedir)/Pessulus
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/Pessulus
}
|