Gentoo Archives: gentoo-commits

From: "Alon Bar-Lev (alonbl)" <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/p11-kit: p11-kit-0.20.3-r1.ebuild ChangeLog
Date: Sat, 02 Aug 2014 10:26:59
Message-Id: 20140802102653.C74862004E@flycatcher.gentoo.org
1 alonbl 14/08/02 10:26:52
2
3 Modified: ChangeLog
4 Added: p11-kit-0.20.3-r1.ebuild
5 Log:
6 Add libff USE flag, bug#518808
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
9
10 Revision Changes Path
11 1.67 app-crypt/p11-kit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.67&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.67&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?r1=1.66&r2=1.67
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v
20 retrieving revision 1.66
21 retrieving revision 1.67
22 diff -u -r1.66 -r1.67
23 --- ChangeLog 27 Jul 2014 18:26:48 -0000 1.66
24 +++ ChangeLog 2 Aug 2014 10:26:52 -0000 1.67
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-crypt/p11-kit
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v 1.66 2014/07/27 18:26:48 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v 1.67 2014/08/02 10:26:52 alonbl Exp $
30 +
31 +*p11-kit-0.20.3-r1 (02 Aug 2014)
32 +
33 + 02 Aug 2014; Alon Bar-Lev <alonbl@g.o> +p11-kit-0.20.3-r1.ebuild:
34 + Add libff USE flag, bug#518808
35
36 *p11-kit-0.20.3 (27 Jul 2014)
37
38
39
40
41 1.1 app-crypt/p11-kit/p11-kit-0.20.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: p11-kit-0.20.3-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.3-r1.ebuild,v 1.1 2014/08/02 10:26:52 alonbl Exp $
51
52 EAPI=5
53
54 inherit eutils multilib-minimal
55
56 DESCRIPTION="Provides a standard configuration setup for installing PKCS#11."
57 HOMEPAGE="http://p11-glue.freedesktop.org/p11-kit.html"
58 SRC_URI="http://p11-glue.freedesktop.org/releases/${P}.tar.gz"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
63 IUSE="+asn1 debug +libffi +trust"
64 REQUIRED_USE="trust? ( asn1 )"
65
66 RDEPEND="asn1? ( >=dev-libs/libtasn1-3.4[${MULTILIB_USEDEP}] )
67 libffi? ( >=dev-libs/libffi-3.0.0[${MULTILIB_USEDEP}] )"
68 DEPEND="${RDEPEND}
69 virtual/pkgconfig"
70
71 pkg_setup() {
72 # disable unsafe tests, bug#502088
73 export FAKED_MODE=1
74 }
75
76 multilib_src_configure() {
77 ECONF_SOURCE="${S}" econf \
78 $(use_enable trust trust-module) \
79 $(use_enable debug) \
80 $(use_with libffi) \
81 $(use_with asn1 libtasn1)
82
83 if multilib_is_native_abi; then
84 # re-use provided documentation
85 ln -s "${S}"/doc/manual/html doc/manual/html || die
86 fi
87 }
88
89 multilib_src_install_all() {
90 prune_libtool_files --modules
91 }