Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/openpam: openpam-20120526.ebuild ChangeLog
Date: Tue, 30 Oct 2012 12:04:15
Message-Id: 20121030120357.82D8121600@flycatcher.gentoo.org
1 aballier 12/10/30 12:03:57
2
3 Modified: ChangeLog
4 Added: openpam-20120526.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.23 sys-auth/openpam/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 24 May 2012 05:04:52 -0000 1.22
24 +++ ChangeLog 30 Oct 2012 12:03:57 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-auth/openpam
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.22 2012/05/24 05:04:52 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/ChangeLog,v 1.23 2012/10/30 12:03:57 aballier Exp $
30 +
31 +*openpam-20120526 (30 Oct 2012)
32 +
33 + 30 Oct 2012; Alexis Ballier <aballier@g.o> +openpam-20120526.ebuild:
34 + version bump
35
36 24 May 2012; Mike Frysinger <vapier@g.o> openpam-20071221.ebuild,
37 openpam-20111218.ebuild:
38
39
40
41 1.1 sys-auth/openpam/openpam-20120526.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/openpam-20120526.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/openpam/openpam-20120526.ebuild?rev=1.1&content-type=text/plain
45
46 Index: openpam-20120526.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-auth/openpam/openpam-20120526.ebuild,v 1.1 2012/10/30 12:03:57 aballier Exp $
51
52 EAPI="2"
53 # https://bugs.gentoo.org/show_bug.cgi?id=318121
54 WANT_AUTOMAKE=1.9
55 inherit multilib autotools eutils libtool
56
57 DESCRIPTION="Open source PAM library."
58 HOMEPAGE="http://www.openpam.org/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
64 IUSE="debug vim-syntax"
65
66 RDEPEND="!sys-libs/pam"
67 DEPEND="sys-devel/make
68 dev-lang/perl"
69 PDEPEND="sys-auth/pambase
70 vim-syntax? ( app-vim/pam-syntax )"
71
72 src_prepare() {
73 epatch "${FILESDIR}/${PN}-20071221-gentoo.patch"
74 epatch "${FILESDIR}/${PN}-20050201-nbsd.patch"
75
76 sed -i -e 's:-Werror::' "${S}/configure.ac"
77
78 mkdir "${S}/m4" # Otherwise aclocal fails since ACLOCAL_AMFLAGS is set in Makefile.am
79 eautoreconf
80 elibtoolize
81 }
82
83 src_configure() {
84 econf ${myconf} \
85 --disable-dependency-tracking \
86 --with-modules-dir=/$(get_libdir)/security/
87 }
88
89 src_install() {
90 emake -j1 DESTDIR="${D}" install || die
91 dodoc CREDITS HISTORY RELNOTES README || die
92
93 find "${D}" -name '*.la' -delete || die
94 }