summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/honeyd/files/digest-honeyd-0.4a1
-rw-r--r--net-analyzer/honeyd/files/digest-honeyd-0.53
-rw-r--r--net-analyzer/honeyd/files/digest-honeyd-0.6a1
-rw-r--r--net-analyzer/honeyd/files/digest-honeyd-0.7a2
-rw-r--r--net-analyzer/honeyd/honeyd-0.4a.ebuild36
-rw-r--r--net-analyzer/honeyd/honeyd-0.5.ebuild50
-rw-r--r--net-analyzer/honeyd/honeyd-0.6a.ebuild44
-rw-r--r--net-analyzer/honeyd/honeyd-0.7a.ebuild72
-rw-r--r--net-analyzer/rrdtool/files/digest-rrdtool-1.0.481
-rw-r--r--net-analyzer/rrdtool/rrdtool-1.0.48.ebuild119
10 files changed, 0 insertions, 329 deletions
diff --git a/net-analyzer/honeyd/files/digest-honeyd-0.4a b/net-analyzer/honeyd/files/digest-honeyd-0.4a
deleted file mode 100644
index b2241093870a..000000000000
--- a/net-analyzer/honeyd/files/digest-honeyd-0.4a
+++ /dev/null
@@ -1 +0,0 @@
-MD5 f821b0791bd512cc9c4cdd421b5c867c honeyd-0.4a.tar.gz 147733
diff --git a/net-analyzer/honeyd/files/digest-honeyd-0.5 b/net-analyzer/honeyd/files/digest-honeyd-0.5
deleted file mode 100644
index 5927d64b0ed4..000000000000
--- a/net-analyzer/honeyd/files/digest-honeyd-0.5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 3aec5101f44ef21b29c213496d92c1c1 honeyd-0.5.tar.gz 272149
-MD5 31994ea5a5a68bcf5af1317c32cf63d7 001-ipfrag.patch 769
-MD5 88a928af9a12570cad7af139684fed03 002-proxy.patch 457
diff --git a/net-analyzer/honeyd/files/digest-honeyd-0.6a b/net-analyzer/honeyd/files/digest-honeyd-0.6a
deleted file mode 100644
index 015b7437743f..000000000000
--- a/net-analyzer/honeyd/files/digest-honeyd-0.6a
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d8743bde540db637a7cd7a19214a8265 honeyd-0.6a.tar.gz 366878
diff --git a/net-analyzer/honeyd/files/digest-honeyd-0.7a b/net-analyzer/honeyd/files/digest-honeyd-0.7a
deleted file mode 100644
index 3d136cb7b7d3..000000000000
--- a/net-analyzer/honeyd/files/digest-honeyd-0.7a
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 04ae109952d274aba4c0ab398e213ef2 honeyd-0.7a.tar.gz 416763
-MD5 98f56c64ca76f52de42c5a0342cdd009 honeyd-0.7a-beta2.tgz 2027537
diff --git a/net-analyzer/honeyd/honeyd-0.4a.ebuild b/net-analyzer/honeyd/honeyd-0.4a.ebuild
deleted file mode 100644
index 301bc4fbe497..000000000000
--- a/net-analyzer/honeyd/honeyd-0.4a.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# 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.7 2004/06/24 22:03:18 agriffis 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=">=dev-libs/libdnet-1.4
- >=dev-libs/libevent-0.6
- >=net-libs/libpcap-0.7.1"
-
-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
-}
-
diff --git a/net-analyzer/honeyd/honeyd-0.5.ebuild b/net-analyzer/honeyd/honeyd-0.5.ebuild
deleted file mode 100644
index dcabb42ca322..000000000000
--- a/net-analyzer/honeyd/honeyd-0.5.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/honeyd/honeyd-0.5.ebuild,v 1.6 2004/06/24 22:03:18 agriffis Exp $
-
-inherit eutils
-
-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.citi.umich.edu/u/provos/honeyd/patches/${PV}/001-ipfrag.patch
- http://www.citi.umich.edu/u/provos/honeyd/patches/${PV}/002-proxy.patch"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="x86"
-
-IUSE=""
-DEPEND=">=dev-libs/libdnet-1.4
- >=dev-libs/libevent-0.6
- >=net-libs/libpcap-0.7.1"
-
-src_unpack() {
- unpack ${P}.tar.gz
- cd ${S}
- epatch ${DISTDIR}/001-ipfrag.patch
- epatch ${DISTDIR}/002-proxy.patch
-}
-
-src_compile() {
- econf --with-libdnet=/usr || die "econf failed"
- emake CFLAGS="${CFLAGS} -Wall -g \
- -DPATH_HONEYDDATA=${honeyddatadir} \
- -DPATH_HONEYDLIB=${honeydlibdir} " \
- || die "emake failed"
-}
-
-src_install() {
- dodoc README
- dosbin honeyd
-
- einstall
-
- 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
-}
-
diff --git a/net-analyzer/honeyd/honeyd-0.6a.ebuild b/net-analyzer/honeyd/honeyd-0.6a.ebuild
deleted file mode 100644
index 11a69531e38e..000000000000
--- a/net-analyzer/honeyd/honeyd-0.6a.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/honeyd/honeyd-0.6a.ebuild,v 1.7 2004/07/11 10:12:33 eldad Exp $
-
-inherit eutils
-
-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=">=dev-libs/libdnet-1.4
- >=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
-}
-
-src_compile() {
- econf --with-libdnet=/usr || die "econf failed"
- emake || die
-}
-
-src_install() {
- dodoc README
- dosbin honeyd
-
- einstall
-
- 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
-}
-
diff --git a/net-analyzer/honeyd/honeyd-0.7a.ebuild b/net-analyzer/honeyd/honeyd-0.7a.ebuild
deleted file mode 100644
index 36167845a24c..000000000000
--- a/net-analyzer/honeyd/honeyd-0.7a.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/honeyd/honeyd-0.7a.ebuild,v 1.5 2004/07/11 10:12:33 eldad Exp $
-
-inherit eutils
-
-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/${P}-beta2.tgz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="x86"
-
-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
-}
-
-src_compile() {
- econf --with-libdnet=/usr || die "econf failed"
- emake || die
-}
-
-src_install() {
- dodoc README
- dosbin honeyd
-
- einstall
-
- 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
-
- # This adds all the services and example configurations collected
- # by Lance Spitzer
-
- # Install the white-papers if 'doc' USE flags are specified
- use doc && (
- cd ${WORKDIR}/${P}-beta2/contrib
- dodoc *
- )
-
- # Install the example configurations
- cd ${WORKDIR}/${P}-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 example start/stop scripts.. Those should _really_
- # be re-written to gentoo instead..
- dodoc start-arpd.sh start-honeyd.sh
-
- # Install all the example scripts
- cd ${WORKDIR}/${P}-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
-
-
-}
-
diff --git a/net-analyzer/rrdtool/files/digest-rrdtool-1.0.48 b/net-analyzer/rrdtool/files/digest-rrdtool-1.0.48
deleted file mode 100644
index b540b7175860..000000000000
--- a/net-analyzer/rrdtool/files/digest-rrdtool-1.0.48
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b38a3b04d2540f2f2bf4ca072b8eb229 rrdtool-1.0.48.tar.gz 1462609
diff --git a/net-analyzer/rrdtool/rrdtool-1.0.48.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.48.ebuild
deleted file mode 100644
index dd5294f65897..000000000000
--- a/net-analyzer/rrdtool/rrdtool-1.0.48.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.48.ebuild,v 1.3 2004/10/24 16:30:42 eldad Exp $
-
-inherit perl-module flag-o-matic gnuconfig eutils
-
-DESCRIPTION="A system to store and display time-series data"
-HOMEPAGE="http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/"
-SRC_URI="http://people.ee.ethz.ch/%7Eoetiker/webtools/${PN}/pub/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc ~sparc ~alpha ~hppa ~amd64 ~ia64"
-IUSE="perl tcltk"
-
-DEPEND="perl? ( dev-lang/perl )
- sys-apps/gawk
- >=media-libs/gd-1.8.3"
-RDEPEND="tcltk? ( dev-lang/tcl )"
-
-TCLVER=""
-
-pkg_setup() {
- if use perl ; then
- perl-module_pkg_setup
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -e 's/^LTCOMPILE = $(LIBTOOL) --mode=compile $(CC)/& -prefer-pic/' -i src/Makefile.in
-
- if [[ ! $(grep '^LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) -prefer-pic' src/Makefile.in) ]]; then
- die "Makefile.in sed failed"
- fi
-}
-
-src_compile() {
- filter-mfpmath sse
- filter-flags -ffast-math
-
- local myconf
- myconf="${myconf} --datadir=/usr/share --enable-shared"
-
- use tcltk \
- && myconf="${myconf} --with-tcllib=/usr/lib" \
- || myconf="${myconf} --without-tcllib"
-
- if use perl; then
- econf ${myconf} --with-perl-options='PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D}' || die "econf failed"
-
- # libraries without -fPIC? feh!
- for libdir in cgilib* gd* libpng* zlib*; do
- sed -i -e 's/^CFLAGS.*/& -fPIC/' ${libdir}/Makefile
- done
- else
- econf ${myconf} || die "econf failed"
- fi
-
- make || die "make failed"
-}
-
-src_install() {
- einstall || die
-
- # this package completely ignores mandir settings
-
- doman doc/*.1
- dohtml doc/*.html
- dodoc doc/*.pod
- dodoc doc/*.txt
-
- rm -rf ${D}/usr/doc
- rm -rf ${D}/usr/html
- rm -rf ${D}/usr/man
- rm -rf ${D}/usr/contrib
- rm -rf ${D}/usr/examples
-
- insinto /usr/share/doc/${PF}/examples
- doins examples/*
- insinto /usr/share/doc/${PF}/contrib
- doins contrib/*
-
- if use perl ; then
- perlinfo
- mytargets="site-perl-install"
- perl-module_src_install || die
-
- # remove duplicate installation into /usr/lib/perl
- rm -Rf ${D}/usr/lib/perl
- fi
-
- if use tcltk ; then
-# mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so
-# insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV}
-# doins ${S}/tcl/tclrrd${PV}.so
- echo "package ifneeded Rrd ${PV} [list load [file join \$$dir .. tclrrd${PV}.so]]" \
- >> ${D}/usr/lib/tcl${TCL_VER}/tclrrd${PV}/pkgIndex.tcl
- fi
-
- dodoc COPY* CONTR* README TODO
-}
-
-pkg_preinst() {
- use perl && perl-module_pkg_preinst
-}
-
-pkg_postinst() {
- use perl && perl-module_pkg_postinst
-}
-
-pkg_prerm() {
- use perl && perl-module_pkg_prerm
-}
-
-pkg_postrm() {
- use perl && perl-module_pkg_postrm
-}