summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2003-02-12 10:45:18 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2003-02-12 10:45:18 +0000
commit0b230a20dbf1b9b8933d1c9fe05362f78917f6ee (patch)
tree52e81f618954a3a2073fb7077a381fdb3ebdb920 /net-analyzer/honeyd
parentsoundscope visualiser plugin (diff)
downloadgentoo-2-0b230a20dbf1b9b8933d1c9fe05362f78917f6ee.tar.gz
gentoo-2-0b230a20dbf1b9b8933d1c9fe05362f78917f6ee.tar.bz2
gentoo-2-0b230a20dbf1b9b8933d1c9fe05362f78917f6ee.zip
Initial imports
Diffstat (limited to 'net-analyzer/honeyd')
-rw-r--r--net-analyzer/honeyd/ChangeLog8
-rw-r--r--net-analyzer/honeyd/files/digest-honeyd-0.4a1
-rw-r--r--net-analyzer/honeyd/honeyd-0.4a.ebuild39
3 files changed, 48 insertions, 0 deletions
diff --git a/net-analyzer/honeyd/ChangeLog b/net-analyzer/honeyd/ChangeLog
new file mode 100644
index 000000000000..ca3a13837d2e
--- /dev/null
+++ b/net-analyzer/honeyd/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for net-analyzer/honeyd
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/honeyd/ChangeLog,v 1.1 2003/02/12 10:45:18 aliz Exp $
+
+*honeyd-0.4b (12 Feb 2003)
+
+ 12 Feb 2003; Daniel Ahlberg <aliz@gentoo.org> :
+ Initial import. Ebuild submitted by Daniel Mannarino <thesnark@operamail.com> in #10889.
diff --git a/net-analyzer/honeyd/files/digest-honeyd-0.4a b/net-analyzer/honeyd/files/digest-honeyd-0.4a
new file mode 100644
index 000000000000..b2241093870a
--- /dev/null
+++ b/net-analyzer/honeyd/files/digest-honeyd-0.4a
@@ -0,0 +1 @@
+MD5 f821b0791bd512cc9c4cdd421b5c867c honeyd-0.4a.tar.gz 147733
diff --git a/net-analyzer/honeyd/honeyd-0.4a.ebuild b/net-analyzer/honeyd/honeyd-0.4a.ebuild
new file mode 100644
index 000000000000..6f0faf045efd
--- /dev/null
+++ b/net-analyzer/honeyd/honeyd-0.4a.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/honeyd/honeyd-0.4a.ebuild,v 1.1 2003/02/12 10:45:18 aliz 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"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="x86"
+
+IUSE=""
+DEPEND=">=libdnet-1.4
+ >=libevent-0.6
+ >=libpcap-0.7.1"
+RDEPEND=${DEPEND}
+
+S="${WORKDIR}/${P}"
+
+src_compile() {
+ ./configure \
+ --with-libdnet=/usr || die "./configure failed"
+ emake CFLAGS="${CFLAGS}"|| die
+}
+
+src_install() {
+ doman honeyd.8
+ dosbin honeyd
+
+ dodir /usr/share/honeyd/scripts
+
+ insinto /usr/share/honeyd
+ doins nmap.prints config.sample
+
+ exeinto /usr/share/honeyd/scripts
+ doexe scripts/web.sh scripts/router-telnet.pl scripts/test.sh
+}
+