37 lines
692 B
Bash
37 lines
692 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=4
|
|
|
|
PYTHON_DEPEND="2"
|
|
|
|
inherit distutils
|
|
|
|
DESCRIPTION="GUI to access Czech eGov \"Datove schranky\""
|
|
HOMEPAGE="http://labs.nic.cz/page/969/datovka/"
|
|
SRC_URI="http://www.nic.cz/public_media/datove_schranky/releases/src/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
dev-python/pygtk:2
|
|
dev-python/pyopenssl
|
|
dev-python/reportlab
|
|
dev-python/sqlalchemy
|
|
media-fonts/dejavu
|
|
>=net-libs/dslib-3.0
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
pkg_setup() {
|
|
python_set_active_version 2
|
|
python_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
python_convert_shebangs -r 4 "${WORKDIR}"
|
|
}
|