Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/p11-kit: p11-kit-0.20.7.ebuild ChangeLog
Date: Sat, 27 Sep 2014 22:53:53
Message-Id: 20140927225349.558696728@oystercatcher.gentoo.org
1 radhermit 14/09/27 22:53:49
2
3 Modified: ChangeLog
4 Added: p11-kit-0.20.7.ebuild
5 Log:
6 Version bump stable series.
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
9
10 Revision Changes Path
11 1.73 app-crypt/p11-kit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.73&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?rev=1.73&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/ChangeLog?r1=1.72&r2=1.73
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v
20 retrieving revision 1.72
21 retrieving revision 1.73
22 diff -u -r1.72 -r1.73
23 --- ChangeLog 23 Sep 2014 06:27:41 -0000 1.72
24 +++ ChangeLog 27 Sep 2014 22:53:49 -0000 1.73
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.72 2014/09/23 06:27:41 alonbl Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/p11-kit/ChangeLog,v 1.73 2014/09/27 22:53:49 radhermit Exp $
30 +
31 +*p11-kit-0.20.7 (27 Sep 2014)
32 +
33 + 27 Sep 2014; Tim Harder <radhermit@g.o> +p11-kit-0.20.7.ebuild:
34 + Version bump stable series.
35
36 *p11-kit-0.21.3 (23 Sep 2014)
37
38
39
40
41 1.1 app-crypt/p11-kit/p11-kit-0.20.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/p11-kit/p11-kit-0.20.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: p11-kit-0.20.7.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.7.ebuild,v 1.1 2014/09/27 22:53:49 radhermit 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 ~ppc-macos ~x64-macos ~x86-macos"
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 trust? ( app-misc/ca-certificates )"
69 DEPEND="${RDEPEND}
70 virtual/pkgconfig"
71
72 pkg_setup() {
73 # disable unsafe tests, bug#502088
74 export FAKED_MODE=1
75 }
76
77 multilib_src_configure() {
78 ECONF_SOURCE="${S}" econf \
79 $(use_enable trust trust-module) \
80 $(use_with trust trust-paths ${EPREFIX}/etc/ssl/certs/ca-certificates.crt) \
81 $(use_enable debug) \
82 $(use_with libffi) \
83 $(use_with asn1 libtasn1)
84
85 if multilib_is_native_abi; then
86 # re-use provided documentation
87 ln -s "${S}"/doc/manual/html doc/manual/html || die
88 fi
89 }
90
91 multilib_src_install_all() {
92 prune_libtool_files --modules
93 }