dev-embedded/urjtag: drop 2019.12

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2023-09-15 07:50:15 +03:00
parent 5e79cc32c5
commit e82fe4338d
2 changed files with 0 additions and 55 deletions

View File

@@ -1,2 +1 @@
DIST urjtag-2019.12.tar.xz 1208432 BLAKE2B 69963cbd39dcbec1abd73778fc6e98d743e36f6d4a17ba673b8691598ac0d4cec97e8b9c79068ad8971e6e07de81553bfd3bf5f684515b4a19303dd95ed477a2 SHA512 e149e53410a6591bdadc2c0138c6f81dac0fd6e35601461e19d356decdb820ec8e6bd53d59a1fd9781dfa1fee88d23dcafbd8df9adc0f8e51256c626d2ee0f36
DIST urjtag-2021.03.tar.xz 1208440 BLAKE2B 68d0f0ec15c25ef351e0523eea21c18e723871032a046d31c031809a2774b0b8339b0b5d1a6f11a681ab3d3074b7f5f4fcd819fa7de1fdcac5f20ab39c6a40dd SHA512 baf203e556d1d41437539d3f5c018b35fbb496f71391c2bec2786ffa47bff33d38654b3e7d106e38bcf36d075d86fc02b18eaaf634cdb65e2840ff50ca0da8b2

View File

@@ -1,54 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://git.code.sf.net/p/urjtag/git"
inherit git-r3 autotools
S="${WORKDIR}/${P}/${PN}"
else
SRC_URI="mirror://sourceforge/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.net/"
LICENSE="GPL-2"
SLOT="0"
# TODO: Figure out if anyone wants the Python bindings
IUSE="ftdi ftd2xx readline usb"
DEPEND="ftdi? ( dev-embedded/libftdi:1= )
ftd2xx? ( dev-embedded/libftd2xx )
readline? ( sys-libs/readline:= )
usb? ( virtual/libusb:1 )"
RDEPEND="${DEPEND}
!dev-embedded/jtag"
src_prepare() {
default
if [[ ${PV} == "9999" ]] ; then
mkdir -p m4 || die
eautopoint
eautoreconf
fi
}
src_configure() {
econf \
--disable-werror \
--disable-python \
--disable-static \
$(use_with readline) \
$(use_with ftdi libftdi) \
$(use_with ftd2xx) \
$(use_with usb libusb 1.0)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}