sys-apps/pcsc-tools: drop 1.7.2-r1

Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2025-06-12 22:04:35 +02:00
parent b12d1004c5
commit c26997c1cf
2 changed files with 0 additions and 69 deletions

View File

@@ -1,2 +1 @@
DIST pcsc-tools-1.7.2.tar.bz2 387207 BLAKE2B 0337de4e1558100777e486f1ddbfd5da37f4cb1c15811e7119ca83349843b37931df7b1aea03826b12c8b041f1b51d0102ab31265a63ea145d5e5a46850d0ff7 SHA512 24fcdbc51de370194f31ef7a74bdc03bc37f8531db44af316c52e4ed1fa76b7ec995bbdaf08063bfe6e8b2f129f2f2fd0fe6c738d867ac10b746d4550ab2cf90
DIST pcsc-tools-1.7.3.tar.bz2 401255 BLAKE2B 2d640b0600c4fb4764e097d8a6f6cefb26be8aa9cfd4dbe2366741acb67559ab1c1bac87f487c4be30b6a4bca7b2f10c2b069a1f5d17088bf5e45513359c2592 SHA512 2659d5d3d1de147fc5373aaf1bea27692d57ace1f9cd19b2181c0ef43d94c77ecff78f4c784238b9ee05f154550535eb966814f1bd9143ad7ae6842f8b92d5c0

View File

@@ -1,68 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop toolchain-funcs xdg-utils
DESCRIPTION="PC/SC Architecture smartcard tools"
HOMEPAGE="https://pcsc-tools.apdu.fr/ https://github.com/LudovicRousseau/pcsc-tools"
SRC_URI="https://pcsc-tools.apdu.fr/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86"
IUSE="gui network-cron"
DEPEND=">=sys-apps/pcsc-lite-1.4.14"
RDEPEND="
${DEPEND}
dev-perl/libintl-perl
dev-perl/pcsc-perl
gui? ( dev-perl/Gtk3 )
"
BDEPEND="
virtual/pkgconfig
sys-devel/gettext
"
src_configure() {
econf --enable-gettext
}
src_compile() {
# explicitly only build the pcsc_scan application, or the man
# pages will be gzipped first, and then unpacked.
emake pcsc_scan CC="$(tc-getCC)"
}
src_install() {
einstalldocs
# install manually, makes it much easier since the Makefile
# requires fiddling with
dobin ATR_analysis scriptor pcsc_scan
doman pcsc_scan.1 scriptor.1p ATR_analysis.1p
if use gui; then
domenu gscriptor.desktop
dobin gscriptor
doman gscriptor.1p
fi
if use network-cron ; then
exeinto /etc/cron.monthly
newexe "${FILESDIR}"/smartcard.cron update-smartcard_list
fi
insinto /usr/share/pcsc
doins smartcard_list.txt
}
pkg_postinst() {
use gui && xdg_desktop_database_update
}
pkg_postrm() {
xdg_desktop_database_update
}