Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/pam_abl: ChangeLog pam_abl-0.4.1.ebuild
Date: Sun, 31 Oct 2010 19:43:22
Message-Id: 20101031194315.ADCB120051@flycatcher.gentoo.org
1 flameeyes 10/10/31 19:43:15
2
3 Modified: ChangeLog
4 Added: pam_abl-0.4.1.ebuild
5 Log:
6 Version bump, closes bug #335154 (LDFLAGS).
7
8 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 sys-auth/pam_abl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_abl/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_abl/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_abl/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/pam_abl/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 5 Apr 2009 16:20:50 -0000 1.9
24 +++ ChangeLog 31 Oct 2010 19:43:15 -0000 1.10
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sys-auth/pam_abl
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_abl/ChangeLog,v 1.9 2009/04/05 16:20:50 jokey Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_abl/ChangeLog,v 1.10 2010/10/31 19:43:15 flameeyes Exp $
31 +
32 +*pam_abl-0.4.1 (31 Oct 2010)
33 +
34 + 31 Oct 2010; Diego E. Pettenò <flameeyes@g.o>
35 + +pam_abl-0.4.1.ebuild:
36 + Version bump, closes bug #335154 (LDFLAGS).
37
38 05 Apr 2009; Markus Ullmann <jokey@g.o> metadata.xml:
39 Update metadata, bug #248403
40
41
42
43 1.1 sys-auth/pam_abl/pam_abl-0.4.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_abl/pam_abl-0.4.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pam_abl/pam_abl-0.4.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pam_abl-0.4.1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_abl/pam_abl-0.4.1.ebuild,v 1.1 2010/10/31 19:43:15 flameeyes Exp $
53
54 EAPI=2
55
56 MY_PN="${PN/_/-}"
57 MY_P="${MY_PN}-${PV}"
58
59 inherit flag-o-matic pam
60
61 DESCRIPTION="PAM module for blacklisting of hosts and users on repeated failed authentication attempts"
62 HOMEPAGE="http://pam-abl.deksai.com/"
63 SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 DEPEND=">=sys-libs/pam-0.78-r2
71 >=sys-libs/db-4.2.52_p2"
72 RDEPEND="${DEPEND}"
73
74 S="${WORKDIR}/${MY_P}"
75
76 src_configure() {
77 econf \
78 --enable-shared \
79 --disable-static \
80 --disable-dependency-tracking \
81 --enable-fast-install \
82 --docdir=/usr/share/doc/${PF} \
83 --with-pam-dir=$(getpam_mod_dir) \
84 || die
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die
89 dopamsecurity . conf/pam_abl.conf
90
91 keepdir /var/lib/abl
92 }
93
94 pkg_postinst() {
95 elog "See /usr/share/doc/${PF}/ for configuration info and set up "
96 elog "/etc/security/pam_abl.conf as needed."
97 }