summaryrefslogtreecommitdiff
blob: f441cf218e4a0c68187c19caedbec82ea69c23dc (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

WX_GTK_VER="3.0"
inherit wxwidgets

DESCRIPTION="flashtool for the multi purpose programming adapter usbprog"
HOMEPAGE="http://www.embedded-projects.net/index.php?page_id=215"
SRC_URI="mirror://gentoo/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gui"

RDEPEND="
	dev-libs/libxml2
	net-misc/curl
	sys-libs/readline:0=
	virtual/libusb:0
	gui? ( x11-libs/wxGTK:${WX_GTK_VER} )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"

PATCHES=( "${FILESDIR}"/${P}-wx3.0.patch )

src_configure() {
	use gui && setup-wxwidgets unicode
	econf \
		--disable-static \
		$(use_enable gui)
}

src_install() {
	default

	# no static archives
	find "${ED}" -name '*.la' -delete || die
}