public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-admin/sshguard: ChangeLog sshguard-1.5-r2.ebuild
@ 2013-01-17  8:14 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 2+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-01-17  8:14 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/01/17 08:14:33

  Modified:             ChangeLog
  Added:                sshguard-1.5-r2.ebuild
  Log:
  Revision bump: EAPI 5, add output about selected firewall backend through einfo
  
  (Portage version: 2.2.0_alpha153/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.18                 app-admin/sshguard/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	17 Jan 2012 18:19:10 -0000	1.17
+++ ChangeLog	17 Jan 2013 08:14:33 -0000	1.18
@@ -1,6 +1,12 @@
 # ChangeLog for app-admin/sshguard
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.17 2012/01/17 18:19:10 jer Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.18 2013/01/17 08:14:33 pinkbyte Exp $
+
+*sshguard-1.5-r2 (17 Jan 2013)
+
+  17 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> +sshguard-1.5-r2.ebuild:
+  Revision bump: EAPI 5, add output about selected firewall backend through
+  einfo
 
   17 Jan 2012; Jeroen Roovers <jer@gentoo.org> -sshguard-1.0.ebuild,
   -sshguard-1.1.ebuild, -sshguard-1.3.ebuild, -sshguard-1.4.ebuild:



1.1                  app-admin/sshguard/sshguard-1.5-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild?rev=1.1&content-type=text/plain

Index: sshguard-1.5-r2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild,v 1.1 2013/01/17 08:14:33 pinkbyte Exp $

EAPI=5

inherit flag-o-matic

DESCRIPTION="protects hosts from brute force attacks against ssh"
HOMEPAGE="http://sshguard.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE="ipfilter kernel_FreeBSD kernel_linux"

CDEPEND="kernel_linux? ( net-firewall/iptables )
	kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) )"
DEPEND="${CDEPEND}
	sys-devel/flex"
RDEPEND="${CDEPEND}
	sys-apps/openrc
	virtual/logger"

DOCS=( README Changes scripts/sshguard_backendgen.sh )

src_prepare() {
	sed -i configure -e '/OPTIMIZER_CFLAGS=/d' || die
}

src_configure() {
	# Needed for usleep(3), see "nasty" in src/sshguard_logsuck.c
	append-flags -D_BSD_SOURCE

	local myconf
	if use kernel_linux; then
		einfo "Selected firewall backend: iptables"
		myconf="--with-firewall=iptables"
	elif use kernel_FreeBSD; then
		if use ipfilter; then
			einfo "Selected firewall backend: ipfw"
			myconf="--with-firewall=ipfw"
		else
			einfo "Selected firewall backend: pf"
			myconf="--with-firewall=pf"
		fi
	fi

	econf ${myconf}
}

src_install() {
	default
	dodoc examples/*
	newinitd "${FILESDIR}"/${PN}.initd ${PN}
	newconfd "${FILESDIR}"/${PN}.confd ${PN}
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-admin/sshguard: ChangeLog sshguard-1.5-r2.ebuild
@ 2013-01-17  8:39 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 2+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-01-17  8:39 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/01/17 08:39:50

  Modified:             ChangeLog sshguard-1.5-r2.ebuild
  Log:
  Replace append-flags with append-cppflags
  
  (Portage version: 2.2.0_alpha153/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.19                 app-admin/sshguard/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	17 Jan 2013 08:14:33 -0000	1.18
+++ ChangeLog	17 Jan 2013 08:39:50 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for app-admin/sshguard
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.18 2013/01/17 08:14:33 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.19 2013/01/17 08:39:50 pinkbyte Exp $
+
+  17 Jan 2013; Sergey Popov <pinkbyte@gentoo.org> sshguard-1.5-r2.ebuild:
+  Replace append-flags with append-cppflags
 
 *sshguard-1.5-r2 (17 Jan 2013)
 



1.2                  app-admin/sshguard/sshguard-1.5-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild?r1=1.1&r2=1.2

Index: sshguard-1.5-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sshguard-1.5-r2.ebuild	17 Jan 2013 08:14:33 -0000	1.1
+++ sshguard-1.5-r2.ebuild	17 Jan 2013 08:39:50 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild,v 1.1 2013/01/17 08:14:33 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.5-r2.ebuild,v 1.2 2013/01/17 08:39:50 pinkbyte Exp $
 
 EAPI=5
 
@@ -31,7 +31,7 @@
 
 src_configure() {
 	# Needed for usleep(3), see "nasty" in src/sshguard_logsuck.c
-	append-flags -D_BSD_SOURCE
+	append-cppflags -D_BSD_SOURCE
 
 	local myconf
 	if use kernel_linux; then





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-01-17  8:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-17  8:39 [gentoo-commits] gentoo-x86 commit in app-admin/sshguard: ChangeLog sshguard-1.5-r2.ebuild Sergey Popov (pinkbyte)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-17  8:14 Sergey Popov (pinkbyte)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox