blob: ed2cceb2aac72ef89e0717b3dee7700830c685ba (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="a command-line searcher for the Revelation password manager"
HOMEPAGE="http://p.outlyer.net/relevation/"
SRC_URI="http://p.outlyer.net/${PN}/files/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"
python_prepare_all() {
# install extra scripts in proper doc dir
sed -i "s#relevation/extra#${PF}/extra#" setup.py || die
distutils-r1_python_prepare_all
}
|