public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alon Bar-Lev" <alonbl@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcsc-tools/
Date: Tue, 11 Aug 2015 20:09:30 +0000 (UTC)	[thread overview]
Message-ID: <1439323741.d03982c0deae40cfd9dd476329dae33a44b22c8d.alonbl@gentoo> (raw)

commit:     d03982c0deae40cfd9dd476329dae33a44b22c8d
Author:     Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 11 20:08:09 2015 +0000
Commit:     Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
CommitDate: Tue Aug 11 20:09:01 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d03982c0

sys-apps/pcsc-tools: version bump

Bug: 557258

Package-Manager: portage-2.2.20

 sys-apps/pcsc-tools/Manifest                 |  1 +
 sys-apps/pcsc-tools/pcsc-tools-1.4.24.ebuild | 65 ++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/sys-apps/pcsc-tools/Manifest b/sys-apps/pcsc-tools/Manifest
index 6ab630b..691ea0b 100644
--- a/sys-apps/pcsc-tools/Manifest
+++ b/sys-apps/pcsc-tools/Manifest
@@ -1,2 +1,3 @@
 DIST pcsc-tools-1.4.22.tar.gz 109458 SHA256 615592dd56627bd0ff3650608bb7eefe3e9f43cc18ca2d805ebf0bf74d30f307 SHA512 cb4bea7bd75e98fda5ff44e3fd680a479cddb3edd6c632951346d2a87329386b55203dc3f2f29d484c23ee4c6cb8f741aaa6b94dd16095b86c7f88f057015cf5 WHIRLPOOL 2f4141034f013970bd43050c70d24e9ab7ee076a29d86d939cc0dc250b4431b6515f04a3e21f179e015c6d80312a70e07101732085e84bf48f5645e7de306c08
 DIST pcsc-tools-1.4.23.tar.gz 114495 SHA256 69ca7bb6ee23ef99e2696451f2f56072dd74adcc43272d89fd757ac8f7de4fe2 SHA512 b94fd467ded600f6ad47510225d325635a227f2bbbe8dbb191fee31a3ccaff951d0ea4a7184765912f00dbf4725b5fcbc478b769fc0dd4369eab0a8c1d627f93 WHIRLPOOL 7ca4c25af05d4f8bebe5a73a3d4e9409d882c42816a25139d218c85ff2464382637ea2049bf176b73ba65a7d483075f23c2087b4a28bf9b38c0102538ca07467
+DIST pcsc-tools-1.4.24.tar.gz 180792 SHA256 176ee6f791cd7437e05d921e5041a1f2265116a5a0d1079a5b8321f2cf541682 SHA512 d333b5e9988d93b1cd889ddfe7271b6cae0713422aa4884d5030f731d1f9de620b53d0857597d4e26508cd8f4db7e94ace07968b34a0c6392c358c38ed1725ae WHIRLPOOL fec763a91efaa95512f9c7b3d038bb288b21ef58e48c67020332e866330d012de24c1beec6e7fdeb383e08252274eada452c66658e9ec76ca3ad88e267a349b8

diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.4.24.ebuild b/sys-apps/pcsc-tools/pcsc-tools-1.4.24.ebuild
new file mode 100644
index 0000000..0751451
--- /dev/null
+++ b/sys-apps/pcsc-tools/pcsc-tools-1.4.24.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+inherit eutils fdo-mime multilib toolchain-funcs
+
+DESCRIPTION="PC/SC Architecture smartcard tools"
+HOMEPAGE="http://ludovic.rousseau.free.fr/softwares/pcsc-tools/"
+SRC_URI="http://ludovic.rousseau.free.fr/softwares/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="gtk network-cron"
+
+RDEPEND=">=sys-apps/pcsc-lite-1.4.14"
+
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+RDEPEND="${RDEPEND}
+	dev-perl/pcsc-perl
+	gtk? ( dev-perl/gtk2-perl )"
+
+src_prepare() {
+	sed -i -e 's:-Wall -O2:$(CFLAGS):g' Makefile
+}
+
+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() {
+	# 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
+
+	dodoc README Changelog
+
+	if use gtk; 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 gtk && fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+	fdo-mime_desktop_database_update
+}


             reply	other threads:[~2015-08-11 20:09 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-11 20:09 Alon Bar-Lev [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-08-26  1:12 [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcsc-tools/ Manuel Rüger
2015-11-12 22:10 Manuel Rüger
2016-03-25 15:00 Manuel Rüger
2016-03-25 15:00 Manuel Rüger
2016-07-16 22:34 Manuel Rüger
2017-03-19  4:12 Kent Fredric
2018-09-01  7:21 Alon Bar-Lev
2018-09-27 23:55 Alon Bar-Lev
2019-11-18 22:17 Aaron Bauman
2020-01-08 16:57 Mikle Kolyada
2020-01-08 16:57 Mikle Kolyada
2020-01-08 20:46 Mikle Kolyada
2020-01-27 19:09 Mikle Kolyada
2020-03-16  7:21 Mikle Kolyada
2020-03-16  7:21 Mikle Kolyada
2020-03-16  7:21 Mikle Kolyada
2020-07-12 16:28 Mikle Kolyada
2020-07-12 16:32 Mikle Kolyada
2020-07-12 16:33 Mikle Kolyada
2022-03-26  0:01 Sam James
2022-06-19  1:55 Sam James
2022-06-22 11:57 Jakov Smolić
2022-09-01 13:27 Jakov Smolić
2022-09-01 13:27 Jakov Smolić
2022-09-01 13:28 Jakov Smolić
2022-09-01 13:28 Jakov Smolić
2022-09-03 10:59 David Seifert
2022-09-03 21:59 David Seifert
2022-09-05  1:14 Sam James
2022-10-04  6:30 Arthur Zamarin
2022-10-29 21:32 Sam James
2022-11-25  5:04 Sam James
2022-11-25  5:21 Sam James
2022-11-25  5:39 Sam James
2022-11-25  5:44 Sam James
2022-12-26  8:35 Sam James
2023-01-01  0:04 Sam James
2023-03-04  6:17 Arthur Zamarin
2023-03-04  8:57 Arthur Zamarin
2023-03-04 11:03 Arthur Zamarin
2023-03-04 11:48 Arthur Zamarin
2023-03-23  9:08 Sam James
2023-03-23  9:08 Sam James
2023-03-23  9:08 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:48 Sam James
2023-10-08 18:38 David Seifert
2023-11-30  3:49 Sam James
2024-01-02  7:01 Sam James
2024-01-17  5:55 Sam James
2024-01-17  8:53 Arthur Zamarin
2024-01-18  0:28 Sam James
2024-01-23 15:08 Sam James
2024-02-02  3:58 Sam James
2024-02-02  6:40 Sam James
2024-02-02 14:58 Arthur Zamarin
2024-02-02 16:27 Arthur Zamarin
2025-02-09  6:23 Sam James
2025-03-13  0:53 Sam James
2025-03-13  1:11 Sam James
2025-03-13  1:28 Sam James
2025-03-13  1:28 Sam James
2025-03-14  6:39 Sam James
2025-05-01  3:43 Sam James
2025-05-01  3:47 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1439323741.d03982c0deae40cfd9dd476329dae33a44b22c8d.alonbl@gentoo \
    --to=alonbl@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox