Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libksba/
Date: Fri, 05 Oct 2018 19:27:15
Message-Id: 1538767571.c7b362ef55c81beee4f46d1e33abdef76bd74739.alonbl@gentoo
1 commit: c7b362ef55c81beee4f46d1e33abdef76bd74739
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 5 19:03:25 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 5 19:26:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7b362ef
7
8 dev-libs/libksba: eapi bump
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11 Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
12
13 dev-libs/libksba/libksba-1.3.5-r2.ebuild | 27 +++++++++++++++++++++++++++
14 1 file changed, 27 insertions(+)
15
16 diff --git a/dev-libs/libksba/libksba-1.3.5-r2.ebuild b/dev-libs/libksba/libksba-1.3.5-r2.ebuild
17 new file mode 100644
18 index 00000000000..b8c1d0eee73
19 --- /dev/null
20 +++ b/dev-libs/libksba/libksba-1.3.5-r2.ebuild
21 @@ -0,0 +1,27 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="X.509 and CMS (PKCS#7) library"
28 +HOMEPAGE="http://www.gnupg.org/related_software/libksba"
29 +SRC_URI="mirror://gnupg/libksba/${P}.tar.bz2"
30 +
31 +LICENSE="LGPL-3+ GPL-2+ GPL-3"
32 +SLOT="0"
33 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
34 +IUSE="static-libs"
35 +
36 +RDEPEND=">=dev-libs/libgpg-error-1.8"
37 +DEPEND="${RDEPEND}"
38 +
39 +src_configure() {
40 + econf \
41 + $(use_enable static-libs static)
42 +}
43 +
44 +src_install() {
45 + default
46 + # ppl need to use lib*-config for --cflags and --libs
47 + find "${D}" -name '*.la' -delete || die
48 +}