blob: 09d9adc4d2b25ae21f96201c10e63ca50f9d292e (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/targetcli/targetcli-9999.ebuild,v 1.3 2012/05/25 16:43:55 alexxy Exp $
EAPI=4
EGIT_REPO_URI="git://linux-iscsi.org/${PN}.git"
PYTHON_DEPEND="2"
RESTRICT_PYTHON_ABIS="3.*"
SUPPORT_PYTHON_ABIS="1"
inherit eutils distutils git-2 python linux-info
DESCRIPTION="The targetcli administration shell"
HOMEPAGE="http://linux-iscsi.org/"
SRC_URI=""
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
dev-python/configshell
dev-python/rtslib
sys-block/lio-utils
"
RDEPEND="${DEPEND}"
CONFIG_CHECK="~TARGET_CORE"
pkg_setup() {
linux-info_pkg_setup
python_pkg_setup
}
|