Gentoo Archives: gentoo-commits

From: "Marcelo Goes (vanquirius)" <vanquirius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/sshguard: ChangeLog sshguard-1.3.ebuild
Date: Mon, 22 Dec 2008 02:03:04
Message-Id: E1LEa8K-0008Rp-Nh@stork.gentoo.org
1 vanquirius 08/12/22 02:03:00
2
3 Modified: ChangeLog
4 Added: sshguard-1.3.ebuild
5 Log:
6 1.3 version bump for bug 246823. Thanks to Priit Laes <amd at store20
7 dot com>
8 (Portage version: 2.1.4.5)
9
10 Revision Changes Path
11 1.9 app-admin/sshguard/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/sshguard/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/sshguard/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/sshguard/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 31 Aug 2008 10:12:51 -0000 1.8
24 +++ ChangeLog 22 Dec 2008 02:03:00 -0000 1.9
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/sshguard
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.8 2008/08/31 10:12:51 hawking Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.9 2008/12/22 02:03:00 vanquirius Exp $
30 +
31 +*sshguard-1.3 (22 Dec 2008)
32 +
33 + 22 Dec 2008; Marcelo Goes <vanquirius@g.o> +sshguard-1.3.ebuild:
34 + 1.3 version bump for bug 246823. Thanks to Priit Laes
35 + <amd at store20 dot com>.
36
37 *sshguard-1.1 (31 Aug 2008)
38
39
40
41
42 1.1 app-admin/sshguard/sshguard-1.3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/sshguard/sshguard-1.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/sshguard/sshguard-1.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: sshguard-1.3.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.3.ebuild,v 1.1 2008/12/22 02:03:00 vanquirius Exp $
52
53 DESCRIPTION="protects hosts from brute force attacks against ssh"
54 HOMEPAGE="http://sshguard.sourceforge.net/"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
56
57 LICENSE="BSD"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
60 IUSE="ipfilter kernel_FreeBSD kernel_linux"
61
62 DEPEND="kernel_linux? ( net-firewall/iptables )
63 kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) )"
64 RDEPEND="${DEPEND}
65 virtual/logger"
66
67 src_compile() {
68 local myconf
69 if use kernel_linux; then
70 myconf="--with-firewall=iptables"
71 elif use kernel_FreeBSD; then
72 use ipfilter && myconf="--with-firewall=ipfw" \
73 || myconf="--with-firewall=pf"
74 fi
75
76 econf ${myconf}
77 emake CFLAGS="${CFLAGS}" || die "emake failed"
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "emake install failed"
82 dodoc README Changes || die "dodoc failed"
83 dodoc examples/* || die "dodoc failed"
84 }