blob: a8a889539a005bc669db2bd544f0722e9d301bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# 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.4 2002/07/11 06:30:45 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="p0f performs passive OS detection based on SYN packets."
SRC_URI="http://www.stearns.org/p0f/p0f-1.8.2.tgz"
DEPEND="net-libs/libpcap"
src_compile() {
patch < ${FILESDIR}/${P}-makefile.patch
cp ${FILESDIR}/${P}.rc p0f.rc
make || die
}
src_install () {
mkdir -p ${D}/usr/bin
mkdir -p ${D}/usr/sbin
mkdir -p ${D}/usr/share/doc
mkdir -p ${D}/usr/share/man/man1
mkdir -p ${D}/etc/init.d
make DESTDIR=${D} install
}
pkg_postinst () {
einfo "You can start the p0f monitoring program on boot time by running"
einfo "rc-update add p0f default"
}
|