blob: 8b257c026853c03cb0940a1f37e3b1e84cd85fe5 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils linux-info toolchain-funcs udev systemd
MY_PN=${PN/_/-}
MY_P=${MY_PN}-${PV/_p*}
#DATA_VER=${PV/*_p}
DATA_VER="20160112"
DESCRIPTION="A tool for controlling 'flip flop' (multiple devices) USB gear like UMTS sticks"
HOMEPAGE="http://www.draisberghof.de/usb_modeswitch/ http://www.draisberghof.de/usb_modeswitch/device_reference.txt"
SRC_URI="http://www.draisberghof.de/${PN}/${MY_P}.tar.bz2
http://www.draisberghof.de/${PN}/${MY_PN}-data-${DATA_VER}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="jimtcl"
COMMON_DEPEND="
virtual/udev
virtual/libusb:1
"
RDEPEND="${COMMON_DEPEND}
jimtcl? ( dev-lang/jimtcl )
!jimtcl? ( dev-lang/tcl:0 )" # usb_modeswitch script is tcl
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
"
S=${WORKDIR}/${MY_P}
CONFIG_CHECK="~USB_SERIAL"
src_prepare() {
sed -i -e '/install.*BIN/s:-s::' Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
emake \
DESTDIR="${D}" \
SYSDIR="${D}/$(systemd_get_unitdir)" \
UDEVDIR="${D}/$(get_udevdir)" \
$(usex jimtcl install-shared install)
# Even if we set SYSDIR above, the Makefile is causing automagic detection of `systemctl` binary,
# which is why we need to force the .service file to be installed:
systemd_dounit ${PN}@.service
dodoc ChangeLog README
pushd ../${MY_PN}-data-${DATA_VER} >/dev/null
emake \
DESTDIR="${D}" \
RULESDIR="${D}/$(get_udevdir)/rules.d" \
files-install db-install
docinto data
dodoc ChangeLog README
popd >/dev/null
}
|