Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libcacard/
Date: Tue, 08 Dec 2015 04:12:38
Message-Id: 1449547894.619dcae1151b794abbb066a6c797f2872af4fe8f.vapier@gentoo
1 commit: 619dcae1151b794abbb066a6c797f2872af4fe8f
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 8 04:07:00 2015 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 8 04:11:34 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=619dcae1
7
8 app-emulation/libcacard: version bump to 2.5.1 #561812
9
10 app-emulation/libcacard/Manifest | 1 +
11 app-emulation/libcacard/libcacard-2.5.1.ebuild | 29 ++++++++++++++++++++++++++
12 2 files changed, 30 insertions(+)
13
14 diff --git a/app-emulation/libcacard/Manifest b/app-emulation/libcacard/Manifest
15 index 3385cd7..474b0c8 100644
16 --- a/app-emulation/libcacard/Manifest
17 +++ b/app-emulation/libcacard/Manifest
18 @@ -1 +1,2 @@
19 DIST libcacard-0.1.2.tar.bz2 276430 SHA256 ca100118865ee24f16cf39367f74434cddbbb003a12a1adc8645f3dc34791daf SHA512 a3622b29fe3a059e069ad6f7da428278a915cec362a6aae3c7cad0d47dfadba67308631435993c0f41cabe92a05874b339518dc503b71b8d86db4976bb6987f6 WHIRLPOOL 9e1a156fbbff34148a1debc1f4a6d23aea687213a45cac7feb57134dcbd59fa95a22558e15e5c237ae6c3a7851282c72b49ee6e94c9fff8940feee13d42f08ad
20 +DIST libcacard-2.5.1.tar.xz 325692 SHA256 4bc29c98bea1defc168205652f4ad203ea5746519b4bef8f04ff7cbe099c4e4e SHA512 88e66745f649f52c3fcc7745834d628e76abc21cef1b300e8750e6c0641f65d0e11224da30fa13dea20d6ebe5d36d7a8680d029e15149fddaea43558216ccc21 WHIRLPOOL 5affa8ad2f047553b0a241a123b89d0db5b7620860da1fafb6123f26efafb7680bfd4d971b3b67e82674664daddf45fe0d973153e97944955e8417ea591d412a
21
22 diff --git a/app-emulation/libcacard/libcacard-2.5.1.ebuild b/app-emulation/libcacard/libcacard-2.5.1.ebuild
23 new file mode 100644
24 index 0000000..b4994a5
25 --- /dev/null
26 +++ b/app-emulation/libcacard/libcacard-2.5.1.ebuild
27 @@ -0,0 +1,29 @@
28 +# Copyright 1999-2015 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI="5"
33 +
34 +DESCRIPTION="virtual Common Access Card (CAC) library emulator"
35 +HOMEPAGE="http://spice-space.org/"
36 +SRC_URI="http://spice-space.org/download/${PN}/${P}.tar.xz"
37 +
38 +LICENSE="GPL-3"
39 +SLOT="0"
40 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
41 +IUSE="static-libs"
42 +
43 +RDEPEND=">=dev-libs/nss-3.13
44 + >=dev-libs/glib-2.22
45 + >=sys-apps/pcsc-lite-1.8"
46 +DEPEND="${RDEPEND}
47 + virtual/pkgconfig"
48 +
49 +src_configure() {
50 + econf $(use_enable static-libs static)
51 +}
52 +
53 +src_install() {
54 + default
55 + use static-libs || find "${ED}"/usr/ -name 'lib*.la' -delete
56 +}