blob: 372223013e1639597464587b7df6ff9e09b38287 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/bigeye/bigeye-0.3.ebuild,v 1.6 2004/07/01 17:21:34 squinky86 Exp $
inherit gcc eutils
DESCRIPTION="Bigeye is a network utility dump and simple honeypot utility"
HOMEPAGE="http://violating.us/projects/bigeye/"
SRC_URI="http://violating.us/projects/bigeye/download/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-gcc3.patch
}
src_compile() {
cd src
$(gcc-getCC) ${CFLAGS} bigeye.c emulate.c -o bigeye || die
}
src_install() {
dobin src/bigeye || die
insinto /usr/share/bigeye
doins sig.file
cp -r messages ${D}/usr/share/bigeye/
dodoc README
}
pkg_postinst() {
einfo "The service emulation files mentioned in the README"
einfo "are located in /usr/share/bigeye/messages"
}
|