From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 69867158086 for ; Fri, 3 Dec 2021 04:50:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D1ADE083E; Fri, 3 Dec 2021 04:50:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03533E0841 for ; Fri, 3 Dec 2021 04:50:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 03F95343047 for ; Fri, 3 Dec 2021 04:50:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EECF202 for ; Fri, 3 Dec 2021 04:50:38 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1638507025.43c40c442031ddec003f197980a5725a2c685b1f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libp11/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libp11/libp11-0.4.11-r2.ebuild X-VCS-Directories: dev-libs/libp11/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 43c40c442031ddec003f197980a5725a2c685b1f X-VCS-Branch: master Date: Fri, 3 Dec 2021 04:50:38 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 71903e1b-467b-44c1-b882-a3bacd59072a X-Archives-Hash: db84c9abef4ed4df56cf2628c32bbb90 commit: 43c40c442031ddec003f197980a5725a2c685b1f Author: Sam James gentoo org> AuthorDate: Fri Dec 3 04:47:32 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 3 04:50:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c40c44 dev-libs/libp11: adapt for OpenSSL bindist changes OpenSSL no longer has a bindist flag. Bug: https://bugs.gentoo.org/762850 Signed-off-by: Sam James gentoo.org> dev-libs/libp11/libp11-0.4.11-r2.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-libs/libp11/libp11-0.4.11-r2.ebuild b/dev-libs/libp11/libp11-0.4.11-r2.ebuild new file mode 100644 index 000000000000..d95932eb7fc6 --- /dev/null +++ b/dev-libs/libp11/libp11-0.4.11-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Abstraction layer to simplify PKCS#11 API" +HOMEPAGE="https://github.com/opensc/libp11/wiki" +SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="doc static-libs" + +RDEPEND="dev-libs/openssl:=" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +src_configure() { + econf \ + --enable-shared \ + $(use_enable static-libs static) \ + $(use_enable doc api-doc) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}