blob: 9e7497c1b6e6b59a672a9315abf189c82cffbe88 (
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
66
67
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/honeyd/honeyd-0.8.ebuild,v 1.8 2005/01/21 22:13:24 ka0ttic Exp $
DESCRIPTION="Honeyd is a small daemon that creates virtual hosts on a network"
HOMEPAGE="http://www.citi.umich.edu/u/provos/honeyd/"
SRC_URI="http://www.citi.umich.edu/u/provos/honeyd/${P}.tar.gz
http://www.tracking-hackers.com/solutions/honeyd/honeyd-0.7a-beta2.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ~ppc"
IUSE="doc"
DEPEND=">=dev-libs/libdnet-1.7
>=dev-libs/libevent-0.6
>=net-libs/libpcap-0.7.1"
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:^CFLAGS = -O2:CFLAGS = ${CFLAGS}:g" Makefile.in || die "sed failed"
}
src_compile() {
econf --with-libdnet=/usr || die "econf failed"
emake || die "emake failed"
}
src_install() {
dodoc README
dosbin honeyd
einstall || die "make install failed"
rm ${D}/usr/bin/honeyd
rm ${D}/usr/share/honeyd/README
dodir /usr/share/honeyd/scripts
exeinto /usr/share/honeyd/scripts
doexe scripts/web.sh scripts/router-telnet.pl scripts/test.sh
insinto /etc
newins config.sample honeyd.conf || die "failed to install honeyd.conf"
newinitd ${FILESDIR}/${PN}.initd ${PN}
newconfd ${FILESDIR}/${PN}.confd ${PN}
# This adds all the services and example configurations collected
# by Lance Spitzer
# Install the white-papers if 'doc' USE flags are specified
use doc && dodoc ${WORKDIR}/honeyd-0.7a-beta2/contrib/*
# Install the example configurations
cd ${WORKDIR}/honeyd-0.7a-beta2
dodoc honeyd.conf nmap.prints nmap.assoc pf.os xprobe2.conf
dodoc honeyd.conf.simple honeyd.conf.bloat nmap.prints.new
dodoc xprobe2.conf.new honeyd.conf.networks
# Install all the example scripts
cd ${WORKDIR}/honeyd-0.7a-beta2/scripts
cp -R * ${D}/usr/share/honeyd/scripts/
cd ${D}/usr/share/honeyd/scripts/
find -type f -name "*.sh" -o -name "*.pl" | xargs chmod +x
}
|