blob: d79a607b57dbfaadbde684e2a657bb21abb84043 (
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
|
# 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.28.0.ebuild,v 1.5 2010/08/14 17:40:17 armin76 Exp $
GCONF_DEBUG="no"
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.13.0
dev-python/pygobject
>=dev-python/gconf-python-2.17.2
>=dev-python/libbonobo-python-2.22
>=dev-python/bug-buddy-python-2.22
>=gnome-base/gconf-2"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
sys-devel/gettext
>=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
}
|