34 lines
683 B
Bash
34 lines
683 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="6"
|
|
|
|
inherit autotools eutils ltprune
|
|
|
|
DESCRIPTION="Library to access J-Link devices"
|
|
HOMEPAGE="https://gitlab.zapb.de/libjaylink/libjaylink"
|
|
|
|
SRC_URI="https://gitlab.zapb.de/libjaylink/libjaylink/-/archive/${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm x86"
|
|
IUSE="static-libs"
|
|
|
|
DEPEND="virtual/libusb:1"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
sed -i -e "/^JAYLINK_CFLAGS=/ s/ -Werror / /" configure.ac || die
|
|
eapply_user
|
|
eautoreconf || die
|
|
}
|
|
|
|
src_configure() {
|
|
econf $(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files
|
|
}
|