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 C8C7213888F for ; Mon, 5 Oct 2015 08:45:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D480E080E; Mon, 5 Oct 2015 08:45:40 +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 C40E1E080E for ; Mon, 5 Oct 2015 08:45:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E69C934089F for ; Mon, 5 Oct 2015 08:45:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1AFCA5FA for ; Mon, 5 Oct 2015 08:45:36 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1444034715.427804d3e91c13559ff4de53ef864cbc5bdcf9cd.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/pkcs11-helper/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/pkcs11-helper/pkcs11-helper-1.11-r1.ebuild X-VCS-Directories: dev-libs/pkcs11-helper/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: 427804d3e91c13559ff4de53ef864cbc5bdcf9cd X-VCS-Branch: master Date: Mon, 5 Oct 2015 08:45:36 +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: 206ea109-42fb-45e6-82cb-ac6f520013c9 X-Archives-Hash: e0739079210a9b4dbe6319f1e219d5d7 commit: 427804d3e91c13559ff4de53ef864cbc5bdcf9cd Author: Julian Ospald gentoo org> AuthorDate: Mon Oct 5 08:39:00 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Mon Oct 5 08:45:15 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=427804d3 dev-libs/pkcs11-helper: add libressl support .../pkcs11-helper/pkcs11-helper-1.11-r1.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/dev-libs/pkcs11-helper/pkcs11-helper-1.11-r1.ebuild b/dev-libs/pkcs11-helper/pkcs11-helper-1.11-r1.ebuild new file mode 100644 index 0000000..739b3c1 --- /dev/null +++ b/dev-libs/pkcs11-helper/pkcs11-helper-1.11-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +DESCRIPTION="PKCS#11 helper library" +HOMEPAGE="http://www.opensc-project.org/opensc/wiki/pkcs11-helper" +SRC_URI="mirror://sourceforge/opensc/${PN}/${P}.tar.bz2" + +LICENSE="|| ( BSD GPL-2 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="doc gnutls libressl nss static-libs" + +RDEPEND=" + !libressl? ( >=dev-libs/openssl-0.9.7:0 ) + libressl? ( dev-libs/libressl ) + gnutls? ( >=net-libs/gnutls-1.4.4 ) + nss? ( dev-libs/nss )" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( >=app-doc/doxygen-1.4.7 )" + +src_configure() { + econf \ + --docdir="${EPREFIX}/usr/share/doc/${PF}" \ + $(use_enable doc) \ + $(use_enable gnutls crypto-engine-gnutls) \ + $(use_enable nss crypto-engine-nss) \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f {} + +}