summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEldad Zack <eldad@gentoo.org>2004-11-06 14:00:48 +0000
committerEldad Zack <eldad@gentoo.org>2004-11-06 14:00:48 +0000
commit681aa5ed8931e6f1b7709c2ed4bf8567c312b407 (patch)
tree8ee94c4fcf003da5b8e93da85ee3bea140004731 /net-analyzer/p0f
parentStable on ppc. (diff)
downloadhistorical-681aa5ed8931e6f1b7709c2ed4bf8567c312b407.tar.gz
historical-681aa5ed8931e6f1b7709c2ed4bf8567c312b407.tar.bz2
historical-681aa5ed8931e6f1b7709c2ed4bf8567c312b407.zip
prune
Diffstat (limited to 'net-analyzer/p0f')
-rw-r--r--net-analyzer/p0f/files/digest-p0f-1.8.21
-rw-r--r--net-analyzer/p0f/files/digest-p0f-2.0.21
-rw-r--r--net-analyzer/p0f/p0f-1.8.2.ebuild34
-rw-r--r--net-analyzer/p0f/p0f-2.0.2.ebuild33
4 files changed, 0 insertions, 69 deletions
diff --git a/net-analyzer/p0f/files/digest-p0f-1.8.2 b/net-analyzer/p0f/files/digest-p0f-1.8.2
deleted file mode 100644
index 4f8cdc1bf001..000000000000
--- a/net-analyzer/p0f/files/digest-p0f-1.8.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 fdc811dda8e0d261a5564d1f3ad5c24c p0f-1.8.2.tgz 23969
diff --git a/net-analyzer/p0f/files/digest-p0f-2.0.2 b/net-analyzer/p0f/files/digest-p0f-2.0.2
deleted file mode 100644
index fd1773c1ab22..000000000000
--- a/net-analyzer/p0f/files/digest-p0f-2.0.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 40d54b9e72cd85a791d1ef633a804743 p0f-2.0.2.tgz 74524
diff --git a/net-analyzer/p0f/p0f-1.8.2.ebuild b/net-analyzer/p0f/p0f-1.8.2.ebuild
deleted file mode 100644
index 4ad97a6af586..000000000000
--- a/net-analyzer/p0f/p0f-1.8.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/p0f-1.8.2.ebuild,v 1.15 2004/10/15 10:01:30 eldad Exp $
-
-inherit eutils
-
-DESCRIPTION="p0f performs passive OS detection based on SYN packets."
-SRC_URI="http://www.stearns.org/p0f/p0f-1.8.2.tgz"
-HOMEPAGE="http://www.stearns.org/p0f/"
-
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="x86 sparc"
-IUSE=""
-
-DEPEND="net-libs/libpcap"
-
-src_compile() {
- epatch ${FILESDIR}/${P}-makefile.patch
- sed -e 's;#include <net/bpf.h>;;' -i p0f.c
-
- cp ${FILESDIR}/${P}.rc p0f.rc
- make || die
-}
-
-src_install () {
- dodir /usr/bin /usr/sbin /usr/share/doc /usr/share/man/man1 /etc/init.d
- make DESTDIR=${D} install || die
-}
-
-pkg_postinst() {
- einfo "You can start the p0f monitoring program on boot time by running"
- einfo "rc-update add p0f default"
-}
diff --git a/net-analyzer/p0f/p0f-2.0.2.ebuild b/net-analyzer/p0f/p0f-2.0.2.ebuild
deleted file mode 100644
index fcf79c041e15..000000000000
--- a/net-analyzer/p0f/p0f-2.0.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/p0f-2.0.2.ebuild,v 1.7 2004/10/15 10:01:30 eldad Exp $
-
-DESCRIPTION="p0f performs passive OS detection based on SYN packets."
-# the p0f.tgz always resembles the latest version, trashing the digest md5sum then, discovered and fixed by gustavoz
-SRC_URI="http://lcamtuf.coredump.cx/p0f/${P}.tgz"
-HOMEPAGE="http://lcamtuf.coredump.cx/p0f.shtml"
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="x86"
-IUSE=""
-
-DEPEND="net-libs/libpcap"
-
-src_compile () {
- cd ${WORKDIR}/p0f
- sed -i "s: /usr/sbin/: ../../image/usr/sbin/:g" ${WORKDIR}/p0f/mk/Linux
- sed -i "s: /etc/p0f: ../../image/etc/p0f:g" ${WORKDIR}/p0f/mk/Linux
- sed -i "s: /usr/man/man1/: ../../image/usr/man/man1/:g" ${WORKDIR}/p0f/mk/Linux
-
- sed -e 's;#include <net/bpf.h>;;' -i p0f.c
-
- make || die
-}
-
-src_install () {
- cd ${WORKDIR}/p0f
- dodir /usr/sbin; dodir /etc/p0f; dodir /usr/man/man1
- mkdir -p ../../image/usr/sbin ../../image/etc/p0f ../../image/usr/man/man1
- make install || die
-}
-