dev-libs/cyberjack: drop 3.99.5_p14-r2

Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Conrad Kostecki
2022-02-20 16:05:22 +01:00
parent e05b3c5ec2
commit d9818bc4f1
2 changed files with 0 additions and 90 deletions

View File

@@ -1,2 +1 @@
DIST pcsc-cyberjack_3.99.5final.SP14.tar.bz2 1682821 BLAKE2B 389b0da28beec42e3e2f1766b76dd77efec24bf7aea906ff14ad206c182162125431ac6c81e9242813c088b4936958b8056f5e7c71424c95de6e8e1ac2357aed SHA512 c83e142d6c071f7f20f9f15b9b76ed819873760bda4b49ec042506b2d7ef9ad8674c953abe67f08a1c4b178ce44767ba6479ea1148d8eeb38797e4775b2a9e82
DIST pcsc-cyberjack_3.99.5final.SP15.tar.bz2 1681827 BLAKE2B e6b8325e4822f24e31b7986d5a7bc0ee2c99bd29568c19ac1fe8d308f561b0bcecfcc3e0ac2633b13986b2422bb014d28c7953e622021476ac3188de4dd0ed15 SHA512 d1a5454aea96866581f48a240b96013bd0c313965a8ef7a384ac41a929f3e805ad13590c383dab7638134c730e6f26e6cd1492d533f4910aad7c515016452258

View File

@@ -1,89 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PN="pcsc-${PN}"
MY_PV="${PV/_p/final.SP}"
MY_P="${MY_PN}_${MY_PV}"
inherit autotools toolchain-funcs udev
DESCRIPTION="REINER SCT cyberJack USB chipcard reader user space driver"
HOMEPAGE="https://www.reiner-sct.de/"
SRC_URI="https://support.reiner-sct.de/downloads/LINUX/V${PV/_p/_SP}/${MY_P}.tar.gz -> ${MY_P}.tar.bz2"
S="${WORKDIR}/${MY_P/_/-}"
KEYWORDS="amd64 x86"
LICENSE="GPL-2+ LGPL-2.1+"
SLOT="0"
IUSE="static-libs threads tools +udev xml"
RDEPEND="
sys-apps/pcsc-lite
virtual/libusb:1=
udev? ( virtual/udev )
xml? ( dev-libs/libxml2:2= )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES="${FILESDIR}/${P}-gcc10.patch"
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
--disable-debug
--disable-error-on-warning
--disable-hal
--disable-mac-universal
--disable-mac-arches-i386
--disable-mac-arches-x86_64
--disable-visibility
--enable-nonserial
--enable-pcsc
--enable-release
--enable-warnings
--sysconfdir="/etc/cyberjack"
$(use_enable static-libs static)
$(use_enable threads)
$(use_enable udev)
$(use_enable xml xml2)
--with-usbdropdir="$($(tc-getPKG_CONFIG) libpcsclite --variable=usbdropdir)"
)
econf "${myeconfargs[@]}"
}
src_compile() {
default
if use tools; then
# cjBingo can't be compiled, as it's defines stuff, which got dropped
cd "${S}"/tools/cjflash && emake
cd "${S}"/tools/cjgeldkarte && emake
fi
}
src_install() {
default
use tools && dobin tools/cjflash/cjflash tools/cjgeldkarte/cjgeldkarte
use udev && udev_newrules "${FILESDIR}"/libifd-cyberjack6.udev-r1 99-cyberjack.rules
dodoc debian/changelog doc/{LIESMICH,README}.{pdf,txt,xml}
docinto html
dodoc doc/{LIESMICH,README}.html
docinto source
dodoc doc/*.c*
find "${D}" -name '*.la' -delete || die
}