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, 23 Sep 2016 07:19:01
Message-Id: 1474615100.b7082e5588c5da4ce11be8a9bfb49a41c6a2f27f.alonbl@gentoo
1 commit: b7082e5588c5da4ce11be8a9bfb49a41c6a2f27f
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 23 07:17:21 2016 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 23 07:18:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7082e55
7
8 dev-libs/libksba - cleanup static and la usage
9
10 Bug: 593748
11 Package-Manager: portage-2.2.28
12
13 dev-libs/libksba/libksba-1.3.5-r1.ebuild | 29 +++++++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/dev-libs/libksba/libksba-1.3.5-r1.ebuild b/dev-libs/libksba/libksba-1.3.5-r1.ebuild
17 new file mode 100644
18 index 00000000..d79ab5e
19 --- /dev/null
20 +++ b/dev-libs/libksba/libksba-1.3.5-r1.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2016 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI="6"
27 +
28 +inherit eutils
29 +
30 +DESCRIPTION="X.509 and CMS (PKCS#7) library"
31 +HOMEPAGE="http://www.gnupg.org/related_software/libksba"
32 +SRC_URI="mirror://gnupg/libksba/${P}.tar.bz2"
33 +
34 +LICENSE="LGPL-3+ GPL-2+ GPL-3"
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
37 +IUSE="static-libs"
38 +
39 +RDEPEND=">=dev-libs/libgpg-error-1.8"
40 +DEPEND="${RDEPEND}"
41 +
42 +src_configure() {
43 + econf $(use_enable static-libs static)
44 +}
45 +
46 +src_install() {
47 + default
48 + # ppl need to use lib*-config for --cflags and --libs
49 + prune_libtool_files
50 +}