blob: 5d1328a7d220e0826729bb0d9e3ae69abf2f102a (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/usb_modeswitch/usb_modeswitch-1.2.3_p20120531-r1.ebuild,v 1.2 2012/07/13 10:23:35 ssuominen Exp $
EAPI=4
inherit linux-info toolchain-funcs
MY_PN=${PN/_/-}
MY_P=${MY_PN}-${PV/_p*}
DATA_VER=${PV/*_p}
DESCRIPTION="USB_ModeSwitch is 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 x86"
IUSE=""
DEPEND="virtual/libusb:0"
RDEPEND="${DEPEND}
dev-lang/tcl" # usb_modeswitch script is tcl
S=${WORKDIR}/${MY_P}
CONFIG_CHECK="~USB_SERIAL"
src_prepare() {
sed -i -e 's:/usr/sbin/modp:/usr/bin/modp:' ${PN}.tcl || die #416223
sed -i -e '/install.*BIN/s:-s::' Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
emake DESTDIR="${D}" install
dodoc ChangeLog README
pushd ../${MY_PN}-data-${DATA_VER} >/dev/null
emake DESTDIR="${D}" files-install db-install
docinto data
dodoc ChangeLog README
popd >/dev/null
}
|