blob: 30d885ae8fc47f750c3cdc261e312b4946c51cdb (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/p0f/p0f-2.0.8-r2.ebuild,v 1.3 2012/05/14 11:36:57 scarabeus Exp $
EAPI="3"
inherit eutils toolchain-funcs
DESCRIPTION="p0f performs passive OS detection based on SYN packets."
HOMEPAGE="http://lcamtuf.coredump.cx/p0f.shtml"
SRC_URI="http://lcamtuf.coredump.cx/p0f/${P}.tgz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="static"
DEPEND="net-libs/libpcap"
S="${WORKDIR}/${PN}"
src_prepare() {
sed -i p0f.c -e 's;#include <net/bpf.h>;;' || die "sed p0f.c"
# The first script ensures only p0f is built
sed -i mk/* \
-e 's|^\(all: $(FILE)\).*$|\1|' \
-e 's|^CFLAGS.*=.*|CFLAGS += \\|g' \
-e '/$(CC).* -o /s|$(CFLAGS)|& $(LDFLAGS)|g' \
|| die "sed makefiles"
sed -i Build -e "s|\"/usr/|\"${EPREFIX}/usr/|g" || die "sed Build"
sed -i config.h \
-e "s|\"/etc/|\"${EPREFIX}/etc/|g" \
-e "s|\"/var/|\"${EPREFIX}/var/|g" \
|| die "sed config.h"
}
src_compile() {
# Set -j1 to supress a warning that would not be useful in this case
emake -j1 CC=$(tc-getCC) \
$(use static && echo static || echo all) p0fq \
|| die "emake failed"
}
src_install () {
use static && mv p0f-static p0f
dosbin p0f p0frep test/p0fq || die
insinto /etc/p0f
doins p0f.fp p0fa.fp p0fr.fp
doman p0f.1 || die
cd doc
dodoc ChangeLog CREDITS KNOWN_BUGS README TODO
newconfd "${FILESDIR}"/${PN}.confd ${PN} || die "newconfd failed"
newinitd "${FILESDIR}"/${PN}.initd3 ${PN} || die "newinitd failed"
}
pkg_postinst(){
elog "Adjust /etc/conf.d/p0f to your liking before using the"
elog "init script. For more information on options, read man p0f."
}
|