From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CCD821384B4 for ; Tue, 8 Dec 2015 04:12:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50AC121C04C; Tue, 8 Dec 2015 04:12:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CED4621C04C for ; Tue, 8 Dec 2015 04:12:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 682FD3408CB for ; Tue, 8 Dec 2015 04:12:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E4E89A1 for ; Tue, 8 Dec 2015 04:12:33 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1449547894.619dcae1151b794abbb066a6c797f2872af4fe8f.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libcacard/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/libcacard/Manifest app-emulation/libcacard/libcacard-2.5.1.ebuild X-VCS-Directories: app-emulation/libcacard/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 619dcae1151b794abbb066a6c797f2872af4fe8f X-VCS-Branch: master Date: Tue, 8 Dec 2015 04:12:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cb0f5d37-b02f-44e6-96aa-aa8a6217793a X-Archives-Hash: f1d52d42b39b5e8d09dbee9382286491 commit: 619dcae1151b794abbb066a6c797f2872af4fe8f Author: Mike Frysinger gentoo org> AuthorDate: Tue Dec 8 04:07:00 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Dec 8 04:11:34 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=619dcae1 app-emulation/libcacard: version bump to 2.5.1 #561812 app-emulation/libcacard/Manifest | 1 + app-emulation/libcacard/libcacard-2.5.1.ebuild | 29 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/app-emulation/libcacard/Manifest b/app-emulation/libcacard/Manifest index 3385cd7..474b0c8 100644 --- a/app-emulation/libcacard/Manifest +++ b/app-emulation/libcacard/Manifest @@ -1 +1,2 @@ DIST libcacard-0.1.2.tar.bz2 276430 SHA256 ca100118865ee24f16cf39367f74434cddbbb003a12a1adc8645f3dc34791daf SHA512 a3622b29fe3a059e069ad6f7da428278a915cec362a6aae3c7cad0d47dfadba67308631435993c0f41cabe92a05874b339518dc503b71b8d86db4976bb6987f6 WHIRLPOOL 9e1a156fbbff34148a1debc1f4a6d23aea687213a45cac7feb57134dcbd59fa95a22558e15e5c237ae6c3a7851282c72b49ee6e94c9fff8940feee13d42f08ad +DIST libcacard-2.5.1.tar.xz 325692 SHA256 4bc29c98bea1defc168205652f4ad203ea5746519b4bef8f04ff7cbe099c4e4e SHA512 88e66745f649f52c3fcc7745834d628e76abc21cef1b300e8750e6c0641f65d0e11224da30fa13dea20d6ebe5d36d7a8680d029e15149fddaea43558216ccc21 WHIRLPOOL 5affa8ad2f047553b0a241a123b89d0db5b7620860da1fafb6123f26efafb7680bfd4d971b3b67e82674664daddf45fe0d973153e97944955e8417ea591d412a diff --git a/app-emulation/libcacard/libcacard-2.5.1.ebuild b/app-emulation/libcacard/libcacard-2.5.1.ebuild new file mode 100644 index 0000000..b4994a5 --- /dev/null +++ b/app-emulation/libcacard/libcacard-2.5.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +DESCRIPTION="virtual Common Access Card (CAC) library emulator" +HOMEPAGE="http://spice-space.org/" +SRC_URI="http://spice-space.org/download/${PN}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="static-libs" + +RDEPEND=">=dev-libs/nss-3.13 + >=dev-libs/glib-2.22 + >=sys-apps/pcsc-lite-1.8" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + default + use static-libs || find "${ED}"/usr/ -name 'lib*.la' -delete +}