blob: 3c4415d8beb2fe30150c961f9ff9905bdf399949 (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit python-single-r1 gnome2
DESCRIPTION="A password manager for GNOME"
HOMEPAGE="https://revelation.olasagasti.info/"
SRC_URI="https://www.bitbucket.org/erikg/revelation/downloads/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RESTRICT="test"
RDEPEND="${PYTHON_DEPS}
dev-python/pygtk[${PYTHON_USEDEP}]
dev-python/pycryptodome[${PYTHON_USEDEP}]
dev-python/gconf-python[${PYTHON_USEDEP}]
dev-python/libgnome-python[${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]
sys-libs/cracklib[python,${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}/${P}-random.patch" \
"${FILESDIR}/${P}-xor.patch"
eapply_user
}
src_configure() {
gnome2_src_configure \
--without-applet \
--disable-desktop-update \
--disable-mime-update
}
src_install() {
gnome2_src_install
python_fix_shebang "${ED}"
}
|