Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/opensc/
Date: Fri, 30 Apr 2021 15:14:00
Message-Id: 1619795633.f035c11a00645bf755ee4fc7bb8386ddcb386ed8.zlogene@gentoo
1 commit: f035c11a00645bf755ee4fc7bb8386ddcb386ed8
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 30 15:12:13 2021 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 30 15:13:53 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f035c11a
7
8 dev-libs/opensc: Drop old
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.2
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 dev-libs/opensc/opensc-0.21.0.ebuild | 66 ------------------------------------
14 1 file changed, 66 deletions(-)
15
16 diff --git a/dev-libs/opensc/opensc-0.21.0.ebuild b/dev-libs/opensc/opensc-0.21.0.ebuild
17 deleted file mode 100644
18 index 720d1aa3832..00000000000
19 --- a/dev-libs/opensc/opensc-0.21.0.ebuild
20 +++ /dev/null
21 @@ -1,66 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit bash-completion-r1 libtool
28 -
29 -DESCRIPTION="Libraries and applications to access smartcards"
30 -HOMEPAGE="https://github.com/OpenSC/OpenSC/wiki"
31 -SRC_URI="https://github.com/OpenSC/OpenSC/releases/download/${PV}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ppc ppc64 ~s390 ~sparc x86"
36 -IUSE="ctapi doc libressl openct notify +pcsc-lite readline secure-messaging ssl test zlib"
37 -RESTRICT="!test? ( test )"
38 -
39 -RDEPEND="zlib? ( sys-libs/zlib )
40 - readline? ( sys-libs/readline:0= )
41 - ssl? (
42 - !libressl? ( dev-libs/openssl:0= )
43 - libressl? ( >=dev-libs/libressl-3.1.0:0= )
44 - )
45 - openct? ( >=dev-libs/openct-0.5.0 )
46 - pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 )
47 - notify? ( dev-libs/glib:2 )"
48 -DEPEND="${RDEPEND}
49 - app-text/docbook-xsl-stylesheets
50 - dev-libs/libxslt
51 - test? ( dev-util/cmocka )"
52 -BDEPEND="virtual/pkgconfig"
53 -
54 -REQUIRED_USE="
55 - pcsc-lite? ( !openct !ctapi )
56 - openct? ( !pcsc-lite !ctapi )
57 - ctapi? ( !pcsc-lite !openct )
58 - || ( pcsc-lite openct ctapi )"
59 -
60 -src_prepare() {
61 - default
62 - elibtoolize
63 -}
64 -
65 -src_configure() {
66 - econf \
67 - --with-completiondir="$(get_bashcompdir)" \
68 - --disable-openpace \
69 - --disable-static \
70 - --disable-strict \
71 - --enable-man \
72 - $(use_enable ctapi) \
73 - $(use_enable doc) \
74 - $(use_enable notify ) \
75 - $(use_enable openct) \
76 - $(use_enable pcsc-lite pcsc) \
77 - $(use_enable readline) \
78 - $(use_enable secure-messaging sm) \
79 - $(use_enable ssl openssl) \
80 - $(use_enable test cmocka) \
81 - $(use_enable zlib)
82 -}
83 -
84 -src_install() {
85 - default
86 - find "${D}" -name '*.la' -delete || die
87 -}