urjtag-2017.10 version bump

This commit is contained in:
Sandino Araico Sanchez 2018-05-27 23:53:19 -05:00
parent dbc7ddc809
commit 2b594afbfa
2 changed files with 7 additions and 3 deletions

View file

@ -0,0 +1,2 @@
DIST urjtag-2017.10.tar.xz 1200472 BLAKE2B a9abd69c9e2de08a9ace325db2a9df2761ee6948e14bccdce859f39eb9cd980035521e9a482dc68d34525072f919b8e7d4bb4813fe3c86a1c070969d3a81ca4d SHA512 6e87eceb98320f2acb739b7e4aeb7a53d2ade8927778be49dc39bd92030d9ce1bced5570ed62757937b879ad7fa153c98b0c22179e83e3f600ae3f9b70692701
EBUILD urjtag-2017.10.ebuild 1137 BLAKE2B 390397c2dbf2424286304147398771a5ffe86c2ccf377dfa4ff49af0369d48647238f34983ed83aba33321538eb6edade9f745be6ba05364f49af9e7036268d3 SHA512 11115a03a33fd55507aa4c6819becb92ac783874d2c4c577cfd59e32fb996c2a73d1bf704adf73117607eb754f46ecbf00aefeb100d111c8b58ef6443e89cd25

View file

@ -11,7 +11,7 @@ if [[ ${PV} == "9999" ]] ; then
inherit git-r3 autotools
S=${WORKDIR}/${P}/${PN}
else
SRC_URI="mirror://sourceforge/urjtag/${P}.tar.bz2"
SRC_URI="mirror://sourceforge/urjtag/${P}.tar.xz"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
fi
@ -20,9 +20,10 @@ HOMEPAGE="http://urjtag.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
IUSE="ftdi readline usb"
IUSE="ftd2xx ftdi readline usb"
DEPEND="ftdi? ( dev-embedded/libftdi:0 )
DEPEND="ftdi? ( dev-embedded/libftdi )
ftd2xx? ( dev-embedded/libftd2xx )
readline? ( sys-libs/readline:= )
usb? ( virtual/libusb:0 )"
RDEPEND="${DEPEND}
@ -42,6 +43,7 @@ src_configure() {
econf \
--disable-werror \
--disable-python \
$(use_with ftd2xx ftd2xx) \
$(use_with ftdi libftdi) \
$(use_with usb libusb)
}