diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-05-14 22:07:42 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-05-14 22:07:42 +0000 |
commit | b615b51450eb81fbef68086874294d014770a791 (patch) | |
tree | c760115c06d77e7f50ef1a02bccc3801373d5351 /net-analyzer | |
parent | stable on amd64 (diff) | |
download | historical-b615b51450eb81fbef68086874294d014770a791.tar.gz historical-b615b51450eb81fbef68086874294d014770a791.tar.bz2 historical-b615b51450eb81fbef68086874294d014770a791.zip |
removing old files
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/p0f/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/p0f/files/p0f-1.8.2-makefile.patch | 12 | ||||
-rw-r--r-- | net-analyzer/p0f/files/p0f-1.8.2.rc | 37 |
3 files changed, 5 insertions, 50 deletions
diff --git a/net-analyzer/p0f/ChangeLog b/net-analyzer/p0f/ChangeLog index 3739fe3401af..3c29dec40341 100644 --- a/net-analyzer/p0f/ChangeLog +++ b/net-analyzer/p0f/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/p0f # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/ChangeLog,v 1.21 2005/04/19 19:34:46 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/ChangeLog,v 1.22 2005/05/14 22:07:42 vanquirius Exp $ + + 14 May 2005; Marcelo Goes <vanquirius@gentoo.org> + -files/p0f-1.8.2-makefile.patch, -files/p0f-1.8.2.rc: + Removing old files. 19 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org> p0f-2.0.5.ebuild: Stable on sparc diff --git a/net-analyzer/p0f/files/p0f-1.8.2-makefile.patch b/net-analyzer/p0f/files/p0f-1.8.2-makefile.patch deleted file mode 100644 index 5f322360a5da..000000000000 --- a/net-analyzer/p0f/files/p0f-1.8.2-makefile.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- Makefil 2002-02-14 21:47:28.000000000 +0200 -+++ Makefile 2002-02-14 21:49:57.000000000 +0200 -@@ -17,8 +17,7 @@ - all: $(FILE) strip - - $(FILE): p0f.c -- $(CC) $(CFLAGS) -DVER=\"$(VERSION)\" -o $@ p0f.c $(CLIBS) \ -- `uname|egrep -i 'sunos|solar' >/dev/null && echo "$(SUNLIBS)"` -+ $(CC) $(CFLAGS) -DVER=\"$(VERSION)\" -o $@ p0f.c $(CLIBS) - - strip: - strip $(FILE) || true diff --git a/net-analyzer/p0f/files/p0f-1.8.2.rc b/net-analyzer/p0f/files/p0f-1.8.2.rc deleted file mode 100644 index 2f0c398fddce..000000000000 --- a/net-analyzer/p0f/files/p0f-1.8.2.rc +++ /dev/null @@ -1,37 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/files/p0f-1.8.2.rc,v 1.4 2004/07/14 23:07:51 agriffis Exp $ - -start() { - ebegin "Starting p0f" - # The 'tcp and tcp[13] & 2 = 2' requires at least syn set. - # An alternative would be 'tcp and tcp[13] & 0x3f = 2', which - # is syn and no other major flags (but ECN enabled packets are OK) - if [ -z "$BpfFilter" ]; then - BpfFilter='tcp and tcp[13] & 2 = 2' - else - BpfFilter="$BpfFilter and tcp and tcp[13] & 2 = 2" - fi - - # The command in backticks returns all the local IP addresses on this machine. - for OneIP in `/sbin/ifconfig 2>/dev/null | grep 'inet addr' | sed -e 's/.*addr://' -e 's/ .*//'` ; do - BpfFilter="$BpfFilter and not src host $OneIP" - done - - # Create a lock file. - mkdir -p /var/lock/subsys - touch /var/lock/subsys/p0f - - # Start up p0f and filter out all packets originating from any of this machines IP's. - einfo "Logfile: ${P0FLOGFILE}" - start-stop-daemon --start --quiet --exec /usr/sbin/p0f -- -v "$BpfFilter" >>"/var/log/p0f" 2>&1 & - eend ${?} -} - -stop() { - ebegin "Stopping p0f" - start-stop-daemon --stop --quiet --exec /usr/sbin/p0f - rm -f /var/lock/subsys/p0f - eend ${?} -} |