Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/openpam: openpam-20130907.ebuild ChangeLog
Date: Sat, 30 Nov 2013 13:36:31
Message-Id: 20131130133625.EA1ED2004E@flycatcher.gentoo.org
1 naota 13/11/30 13:36:25
2
3 Modified: ChangeLog
4 Added: openpam-20130907.ebuild
5 Log:
6 Version bump. patch written by Yuta SATOH <nigoro.gentoo@×××××.com>. #492616
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F8551514)
9
10 Revision Changes Path
11 1.25 sys-auth/openpam/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 10 Aug 2013 15:59:14 -0000 1.24
24 +++ ChangeLog 30 Nov 2013 13:36:25 -0000 1.25
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sys-auth/openpam
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.24 2013/08/10 15:59:14 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.25 2013/11/30 13:36:25 naota Exp $
30 +
31 +*openpam-20130907 (30 Nov 2013)
32 +
33 + 30 Nov 2013; Naohiro Aota <naota@g.o>
34 + +files/openpam-20130907-gentoo.patch,
35 + +files/openpam-20130907-module-dir.patch, +files/openpam-20130907-nbsd.patch,
36 + +openpam-20130907.ebuild:
37 + Version bump. patch written by Yuta SATOH <nigoro.gentoo@×××××.com>. #492616
38
39 *openpam-20120526-r1 (10 Aug 2013)
40
41 @@ -112,4 +120,3 @@
42 +files/openpam-20050201-gentoo.patch, +files/openpam-20050201-nbsd.patch,
43 +metadata.xml, +openpam-20050201-r1.ebuild:
44 Import openpam from gentoo-alt overlay (in sys-auth rather than sys-libs).
45 -
46
47
48
49 1.1 sys-auth/openpam/openpam-20130907.ebuild
50
51 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/openpam-20130907.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/openpam-20130907.ebuild?rev=1.1&content-type=text/plain
53
54 Index: openpam-20130907.ebuild
55 ===================================================================
56 # Copyright 1999-2013 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20130907.ebuild,v 1.1 2013/11/30 13:36:25 naota Exp $
59
60 EAPI="5"
61
62 AUTOTOOLS_AUTORECONF=1
63 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
64
65 inherit multilib autotools-multilib
66
67 DESCRIPTION="Open source PAM library."
68 HOMEPAGE="http://www.openpam.org/"
69 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
70
71 LICENSE="BSD"
72 SLOT="0"
73 KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
74 IUSE="debug vim-syntax"
75
76 RDEPEND="!sys-libs/pam"
77 DEPEND="sys-devel/make
78 dev-lang/perl"
79 PDEPEND="sys-auth/pambase
80 vim-syntax? ( app-vim/pam-syntax )"
81
82 PATCHES=(
83 "${FILESDIR}/${PN}-20130907-gentoo.patch"
84 "${FILESDIR}/${PN}-20130907-nbsd.patch"
85 "${FILESDIR}/${PN}-20130907-module-dir.patch"
86 )
87
88 DOCS=( CREDITS HISTORY RELNOTES README )
89
90 src_prepare() {
91 sed -i -e 's:-Werror::' "${S}/configure.ac"
92
93 autotools-multilib_src_prepare
94 }
95
96 my_configure() {
97 local myeconfargs=(
98 --with-modules-dir=/$(get_libdir)/security
99 )
100 autotools-utils_src_configure
101 }
102
103 src_configure() {
104 multilib_parallel_foreach_abi my_configure
105 }