blob: 60327e2adb4b2f6043928cb82d2c0cfb7362f2f2 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
inherit python-r1
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://git.code.sf.net/p/urjtag/git"
inherit git-r3 autotools
S="${WORKDIR}/${P}/${PN}"
else
SRC_URI="https://downloads.sourceforge.net/urjtag/${P}.tar.xz"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
fi
DESCRIPTION="Tool for communicating over JTAG with flash chips, CPUs, and many more"
HOMEPAGE="https://urjtag.sourceforge.io/"
LICENSE="GPL-2"
SLOT="0"
IUSE="ftdi ftd2xx python readline usb"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
DEPEND="ftdi? ( dev-embedded/libftdi:1 )
ftd2xx? ( dev-embedded/libftd2xx )
python? ( ${PYTHON_DEPS} )
readline? ( sys-libs/readline:= )
usb? ( virtual/libusb:1 )"
RDEPEND="${DEPEND}"
BDEPEND="
python? ( dev-python/setuptools[${PYTHON_USEDEP}] )
"
PATCHES=(
"${FILESDIR}/${PN}-2021.03-fix-python-setup.patch"
)
src_prepare() {
default
if [[ ${PV} == "9999" ]] ; then
mkdir -p m4 || die
eautopoint
eautoreconf
fi
}
src_configure() {
econf \
--disable-werror \
--disable-python \
$(use_with readline) \
$(use_with ftdi libftdi) \
$(use_with ftd2xx) \
$(use_with usb libusb 1.0)
}
src_compile() {
use python && python_copy_sources
emake
}
src_install() {
default
if use python; then
installation() {
cd bindings/python || die
ln -s "${S}"/src/.libs ../../src/.libs || die
"${EPYTHON}" setup.py install \
--root="${D}" \
--prefix="${EPREFIX}/usr" || die
}
python_foreach_impl run_in_build_dir installation
python_foreach_impl python_optimize
fi
find "${ED}" -name '*.la' -delete || die
}
|