blob: b3552f35dbefd3d9a1ecc5406113a80e57e91467 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/pyrad/pyrad-0.5.3-r1.ebuild,v 1.1 2011/07/17 16:55:11 dilfridge Exp $
EAPI=3
PYTHON_DEPEND="2:2.6"
# Support for multiple Python ABIs is blocked only
# by pykde4 >= 4.6.5 not yet having stable keywords.
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[345] 3.*"
inherit distutils
MY_PN="pyRadKDE"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A wheel type command interface for KDE, heavily inspired by Kommando"
HOMEPAGE="http://bitbucket.org/ArneBab/pyrad"
SRC_URI="mirror://pypi/p/${MY_PN}/${MY_P}.tar.gz"
LICENSE="GPL-3"
KEYWORDS="~amd64"
SLOT="0"
IUSE=""
S="${WORKDIR}/${MY_P}"
RDEPEND="kde-base/pykde4"
DEPEND="${RDEPEND}
dev-python/setuptools"
|