blob: 78e7318d30c366b83447cc5190d17282a5a7bdde (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/revelation/revelation-0.4.7.ebuild,v 1.3 2007/01/25 14:27:24 beandog Exp $
inherit python gnome2
DESCRIPTION="A password manager for GNOME"
HOMEPAGE="http://oss.codepoet.no/revelation/"
SRC_URI="ftp://oss.codepoet.no/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-python/gnome-python-desktop-2.16
>=dev-python/pygtk-2.10.3
dev-python/pycrypto
sys-libs/cracklib
dev-python/gnome-python-extras"
src_unpack() {
gnome2_src_unpack
ln -sf /bin/true py-compile
sed -i 's/gnome.applet/gnomeapplet/' \
src/wrap/gnomemisc/gnomemisc.override \
|| die "sed failed"
}
src_compile() {
gnome2_src_compile \
--disable-dependency-tracking \
--disable-desktop-update \
--disable-mime-update
}
src_install() {
DOCS="AUTHORS ChangeLog NEWS README TODO" \
gnome2_src_install
}
pkg_postinst() {
gnome2_pkg_postinst
python_version
python_mod_optimize "${ROOT}"usr/lib/python${PYVER}/site-packages/${PN}
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup
}
|