blob: 60e47632df042484063300ab9703faea3347f9f5 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
EGIT_REPO_URI="git://linux-iscsi.org/lio-utils.git"
PYTHON_DEPEND="2"
RESTRICT_PYTHON_ABIS="3.*"
SUPPORT_PYTHON_ABIS="1"
inherit eutils distutils git-2 python linux-info
DESCRIPTION="Tools for controlling target_core_mod/ConfigFS"
HOMEPAGE="http://linux-iscsi.org/"
SRC_URI=""
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE="snmp"
DEPEND="snmp? ( net-analyzer/net-snmp )"
RDEPEND="${DEPEND}"
CONFIG_CHECK="~TARGET_CORE"
pkg_setup() {
linux-info_pkg_setup
python_pkg_setup
}
src_prepare(){
local module
for module in tcm-py lio-py; do
cd ${module}
distutils_src_prepare
cd ..
done
epatch "${FILESDIR}"/tools-makefile.patch
epatch "${FILESDIR}"/snmp-makefile.patch
}
src_compile(){
local module
for module in tcm-py lio-py; do
cd ${module}
distutils_src_compile
cd ..
done
cd tools/
emake || die "emake failed"
cd ..
if use snmp; then
cd mib-modules/
emake || die "emake snmp failed"
cd ..
fi
}
src_install(){
local module
for module in tcm-py lio-py; do
cd ${module}
distutils_src_install
cd ..
done
cd tools/
emake DESTDIR="${ED}" install || die "emake install failed"
cd ..
symlink_to_sbin(){
local ver=$(python_get_version) sitedir="$(python_get_sitedir)"
ln -s "${sitedir}"/lio_dump.py \
"${ED}"/usr/sbin/lio_dump-${ver}
python_convert_shebangs "${ver}" "${D}${sitedir}"/lio_dump.py
ln -s "${sitedir}"/lio_node.py \
"${ED}"/usr/sbin/lio_node-${ver}
python_convert_shebangs "${ver}" "${D}${sitedir}"/lio_node.py
ln -s "${sitedir}"/tcm_dump.py \
"${ED}"/usr/sbin/tcm_dump-${ver}
python_convert_shebangs "${ver}" "${D}${sitedir}"/tcm_dump.py
ln -s "${sitedir}"/tcm_node.py \
"${ED}"/usr/sbin/tcm_node-${ver}
python_convert_shebangs "${ver}" "${D}${sitedir}"/tcm_node.py
ln -s "${sitedir}"/tcm_fabric.py \
"${ED}"/usr/sbin/tcm_fabric-${ver}
python_convert_shebangs "${ver}" "${D}${sitedir}"/tcm_fabric.py
}
python_execute_function --action-message "Making symlinks to /usr/sbin" symlink_to_sbin
python_generate_wrapper_scripts "${ED}"/usr/sbin/{lio_dump,lio_node,tcm_node,tcm_dump,tcm_fabric}
if use snmp; then
cd mib-modules/
emake DESTDIR="${ED}" install || die "emake install snmp failed"
cd ..
fi
emake DESTDIR="${ED}" conf_install || die "emake conf_install failed"
newinitd "${FILESDIR}/target.initd" target
}
|