blob: 9e6bbe114f3b967695cae3b80628e114a04ba562 (
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-2009 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.4 2009/10/24 16:49:07 nixnut Exp $
inherit gnome2 python
DESCRIPTION="Lockdown editor for GNOME"
HOMEPAGE="http://live.gnome.org/Pessulus"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~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
}
|