diff options
author | 2003-08-21 05:10:43 +0000 | |
---|---|---|
committer | 2003-08-21 05:10:43 +0000 | |
commit | 6e7cea239bc4cf7ed0011b449c89f95b8ce062c8 (patch) | |
tree | 898d2274f7ebc90170a7073455ef87b2851a6dbe /net-analyzer/dsniff/dsniff-2.3-r1.ebuild | |
parent | touchups (diff) | |
download | gentoo-2-6e7cea239bc4cf7ed0011b449c89f95b8ce062c8.tar.gz gentoo-2-6e7cea239bc4cf7ed0011b449c89f95b8ce062c8.tar.bz2 gentoo-2-6e7cea239bc4cf7ed0011b449c89f95b8ce062c8.zip |
ppc #27012
Diffstat (limited to 'net-analyzer/dsniff/dsniff-2.3-r1.ebuild')
-rw-r--r-- | net-analyzer/dsniff/dsniff-2.3-r1.ebuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/net-analyzer/dsniff/dsniff-2.3-r1.ebuild b/net-analyzer/dsniff/dsniff-2.3-r1.ebuild new file mode 100644 index 000000000000..f8f6985c935b --- /dev/null +++ b/net-analyzer/dsniff/dsniff-2.3-r1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/dsniff/dsniff-2.3-r1.ebuild,v 1.1 2003/08/21 05:10:43 vapier Exp $ + +inherit eutils + +# dsniff needs to build it's own version of sys-libs/db, since the one +# normally installed is for some reason unusable for dsniffs configure script. +# The version is chosen as being the standard one around at the time i wrote +# this ebuild, it's not set in stone. + +DB_VER="3.2.9" + +DESCRIPTION="A collection of tools for network auditing and penetration testing" +HOMEPAGE="http://monkey.org/~dugsong/dsniff/" +SRC_URI="http://www.sleepycat.com/update/snapshot/db-${DB_VER}.tar.gz + http://monkey.org/~dugsong/${PN}/${P}.tar.gz" + +# dsniff has it's own small license which is in the docs section +LICENSE="DSNIFF" +SLOT="0" +KEYWORDS="~x86 ~alpha" + +RDEPEND=">=net-libs/libpcap-0.7.1 + >=net-libs/libnet-1.0.2a-r3 + <net-libs/libnet-1.1 + >=net-libs/libnids-1.16-r1 + <net-libs/libnids-1.17 + >=dev-libs/openssl-0.9.6e" + +# dependencies only for building our own sys-libs/db +DEPEND="${RDEPEND} + virtual/glibc + =sys-libs/db-1.85-r1 + sys-devel/libtool + sys-devel/m4" + +src_unpack() { + unpack db-${DB_VER}.tar.gz + unpack ${P}.tar.gz + + # Making sure data files get correctly installed and that dsniff + # can find them + # Working around dsniff b0rky config script + # Data stuff goes into /etc/dsniff + cd ${S} + epatch ${FILESDIR}/${PV}-libnet-1.0.patch + sed -i "s:lib':':" configure || die "sed configure" + sed -i 's:-DDSNIFF_LIBDIR=\\\"$(libdir)/\\\"::' Makefile.in || die "sed makefile" + sed -i 's:/usr/local/lib:/etc/dsniff:' pathnames.h || die "sed pathnames" +} + +src_compile() { + cd ${WORKDIR}/db-${DB_VER}/dist + ./configure \ + --host=${CHOST} \ + --enable-compat185 || die "./configure of db-${DB_VER} failed" + emake || die "build of db-${DB_VER} failed" + + # Another workaround around the crappy config script + cd ${S} + econf --with-db=../db-${DB_VER} || die + make || die +} + +src_install() { + make install || die + dodoc CHANGES LICENSE README TODO +} |