diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-03-13 19:27:24 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-03-13 19:27:24 +0000 |
commit | 58fac5bd3af7f31b7da8aba3568d4ad10489b0b6 (patch) | |
tree | 2b5cc4025ff73ba72bb9a4ce6a7b4376c23132ce /net-analyzer | |
parent | Old. (diff) | |
download | gentoo-2-58fac5bd3af7f31b7da8aba3568d4ad10489b0b6.tar.gz gentoo-2-58fac5bd3af7f31b7da8aba3568d4ad10489b0b6.tar.bz2 gentoo-2-58fac5bd3af7f31b7da8aba3568d4ad10489b0b6.zip |
Old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/scanlogd/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/scanlogd/files/scanlogd-2.2.6-Makefile.patch | 11 | ||||
-rw-r--r-- | net-analyzer/scanlogd/scanlogd-2.2.6-r2.ebuild | 57 |
3 files changed, 5 insertions, 69 deletions
diff --git a/net-analyzer/scanlogd/ChangeLog b/net-analyzer/scanlogd/ChangeLog index c1febf8225fc..dfc07bd0de52 100644 --- a/net-analyzer/scanlogd/ChangeLog +++ b/net-analyzer/scanlogd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/scanlogd # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/scanlogd/ChangeLog,v 1.36 2015/03/02 09:22:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/scanlogd/ChangeLog,v 1.37 2015/03/13 19:27:24 jer Exp $ + + 13 Mar 2015; Jeroen Roovers <jer@gentoo.org> -scanlogd-2.2.6-r2.ebuild, + -files/scanlogd-2.2.6-Makefile.patch: + Old. 02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> scanlogd-2.2.7.ebuild: Stable for ppc, wrt bug #502864 diff --git a/net-analyzer/scanlogd/files/scanlogd-2.2.6-Makefile.patch b/net-analyzer/scanlogd/files/scanlogd-2.2.6-Makefile.patch deleted file mode 100644 index ef36abda0911..000000000000 --- a/net-analyzer/scanlogd/files/scanlogd-2.2.6-Makefile.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/./scanlogd-2.2.6/Makefile 2006-03-05 11:03:15.000000000 +0100 -+++ b/./scanlogd-2.2.6/Makefile 2006-03-27 00:39:16.000000000 +0200 -@@ -1,8 +1,6 @@ - CC = gcc - LD = $(CC) - RM = rm -f --CFLAGS = -Wall -O2 -fomit-frame-pointer --LDFLAGS = -s - - PCAP_H = -I/usr/include/pcap - PCAP_L = -lpcap diff --git a/net-analyzer/scanlogd/scanlogd-2.2.6-r2.ebuild b/net-analyzer/scanlogd/scanlogd-2.2.6-r2.ebuild deleted file mode 100644 index 7b2b73d36716..000000000000 --- a/net-analyzer/scanlogd/scanlogd-2.2.6-r2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/scanlogd/scanlogd-2.2.6-r2.ebuild,v 1.9 2013/01/02 23:33:30 ulm Exp $ - -inherit eutils toolchain-funcs user - -DESCRIPTION="Scanlogd - detects and logs TCP port scans" -SRC_URI="http://www.openwall.com/scanlogd/${P}.tar.gz" -HOMEPAGE="http://www.openwall.com/scanlogd/" - -LICENSE="Openwall GPL-2" # GPL-2 for initscript -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="nids pcap" - -DEPEND="nids? ( net-libs/libnids - net-libs/libnet - net-libs/libpcap ) - pcap? ( net-libs/libpcap )" -RDEPEND=${DEPEND} - -pkg_setup() { - enewgroup scanlogd - enewuser scanlogd -1 -1 /dev/null scanlogd - if use nids && use pcap ; then - ewarn - ewarn "As you set both nids and pcap useflag, we default to pcap" - ewarn - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-Makefile.patch" -} - -src_compile() { - local target=linux - use nids && target=libnids - use pcap && target=libpcap - - einfo "Compiling against ${target}" - - emake CC="$(tc-getCC)" ${target} || die "emake failed" -} - -src_install() { - dosbin scanlogd - doman scanlogd.8 - newinitd "${FILESDIR}"/scanlogd.rc scanlogd -} - -pkg_postinst() { - elog "You can start the scanlogd monitoring program at boot by running" - elog "rc-update add scanlogd default" -} |