blob: b300c69bc8ce49838d7aaf1c758e46654edc8e42 (
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit eutils multilib flag-o-matic toolchain-funcs
# One ebuild to rule them all
if [[ ${PV} == "9999" ]] ; then
inherit autotools git-2
KEYWORDS=""
EGIT_REPO_URI="git://git.code.sf.net/p/${PN}/code"
EGIT_PROJECT="${PN}"
else
KEYWORDS="~amd64 ~x86"
SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.bz2"
fi
DESCRIPTION="OpenOCD - Open On-Chip Debugger"
HOMEPAGE="http://openocd.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
IUSE="blaster dummy ftd2xx ftdi minidriver parport presto segger stlink usb versaloon verbose-io"
RESTRICT="strip" # includes non-native binaries
# libftd2xx is the default because it is reported to work better.
DEPEND=">=dev-lang/jimtcl-0.73
usb? ( virtual/libusb:0 )
presto? ( dev-embedded/libftd2xx )
ftd2xx? ( dev-embedded/libftd2xx )
ftdi? ( dev-embedded/libftdi:= )"
RDEPEND="${DEPEND}"
REQUIRED_USE="blaster? ( || ( ftdi ftd2xx ) ) ftdi? ( !ftd2xx )"
src_prepare() {
epatch_user
if [[ ${PV} == "9999" ]] ; then
sed -i -e "/@include version.texi/d" doc/${PN}.texi || die
AT_NO_RECURSIVE=yes eautoreconf
fi
# Disable craptastic build settings.
sed -i \
-e 's:if test "[$]OCDxprefix" != "[$]ac_default_prefix":if false:' \
configure || die
if use ftdi ; then
local pc="libftdi$(has_version dev-embedded/libftdi:1 && echo 1)"
# Use libftdi-1 paths #460916
local libs=$($(tc-getPKG_CONFIG) --libs ${pc})
sed -i \
-e "s:-lftdi -lusb:${libs}:" \
configure src/Makefile.in || die
append-cppflags $($(tc-getPKG_CONFIG) --cflags ${pc})
fi
}
src_configure() {
# Here are some defaults
local myconf=(
--enable-buspirate
--enable-ioutil
--disable-werror
--disable-internal-jimtcl
--enable-amtjtagaccel
--enable-ep93xx
--enable-at91rm9200
--enable-gw16012
--enable-oocd_trace
--enable-ulink
--enable-arm-jtag-ew
--enable-ti-icdi
--enable-osbdm
--enable-opendous
)
if use usb; then
myconf+=(
--enable-usbprog
--enable-jlink
--enable-rlink
--enable-vsllink
--enable-arm-jtag-ew
$(use_enable verbose-io verbose-usb-io)
$(use_enable verbose-io verbose_usb_comms)
)
fi
# add explicitely the path to libftd2xx
use ftd2xx && append-ldflags -L/opt/$(get_libdir)
if use blaster; then
use ftdi && myconf+=( --enable-usb_blaster_libftdi )
use ftd2xx && myconf+=( --enable-usb_blaster_ftd2xx )
fi
econf \
$(use_enable dummy) \
$(use_enable ftdi ft2232_libftdi) \
$(use_enable ftdi) \
$(use_enable ftd2xx ft2232_ftd2xx) \
$(use_enable minidriver minidriver-dummy) \
$(use_enable parport) \
$(use_enable parport parport_ppdev) \
$(use_enable parport parport_giveio) \
$(use_enable presto presto_ftd2xx) \
$(use_enable segger jlink) \
$(use_enable stlink) \
$(use_enable versaloon vsllink) \
$(use_enable verbose-io verbose-jtag-io) \
"${myconf[@]}"
}
src_install() {
default
env -uRESTRICT prepstrip "${ED}"/usr/bin "${ED}"/usr/$(get_libdir)
}
|