diff options
author | Ben Lutgens <lamer@gentoo.org> | 2001-07-15 18:30:48 +0000 |
---|---|---|
committer | Ben Lutgens <lamer@gentoo.org> | 2001-07-15 18:30:48 +0000 |
commit | c09073e1445fbd1d20a97995efee103e7e0b69e7 (patch) | |
tree | 2ff351d233892b15cac1d85dd63c92827c9bdb9f /net-analyzer/sniffit | |
parent | minor fixes (diff) | |
download | gentoo-2-c09073e1445fbd1d20a97995efee103e7e0b69e7.tar.gz gentoo-2-c09073e1445fbd1d20a97995efee103e7e0b69e7.tar.bz2 gentoo-2-c09073e1445fbd1d20a97995efee103e7e0b69e7.zip |
packet sniffer.
Diffstat (limited to 'net-analyzer/sniffit')
-rw-r--r-- | net-analyzer/sniffit/files/digest-sniffit-0.3.5 | 1 | ||||
-rw-r--r-- | net-analyzer/sniffit/sniffit-0.3.5.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/net-analyzer/sniffit/files/digest-sniffit-0.3.5 b/net-analyzer/sniffit/files/digest-sniffit-0.3.5 new file mode 100644 index 000000000000..7d116952fe4a --- /dev/null +++ b/net-analyzer/sniffit/files/digest-sniffit-0.3.5 @@ -0,0 +1 @@ +MD5 bd116c62669372d7ea7f59c337f6822a sniffit.0.3.5.tar.gz diff --git a/net-analyzer/sniffit/sniffit-0.3.5.ebuild b/net-analyzer/sniffit/sniffit-0.3.5.ebuild new file mode 100644 index 000000000000..12b68cc3424c --- /dev/null +++ b/net-analyzer/sniffit/sniffit-0.3.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ben Lutgens <lamer@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sniffit/sniffit-0.3.5.ebuild,v 1.1 2001/07/15 18:30:48 lamer Exp $ +A=sniffit.0.3.5.tar.gz +S=${WORKDIR}/${PN}.0.3.5 +DESCRIPTION="packet sniffer" +SRC_URI="http://reptile.rug.ac.be/~coder/sniffit/files/${A}" +HOMEPAGE="http://reptile.rug.ac.be/~coder/sniffit/sniffit.html" +DEPEND="" + +#RDEPEND="" + +src_compile() { + try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} + + try emake + #try make +} + +src_install () { + + dobin sniffit + doman sniffit.5 sniffit.8 + dodoc README.FIRST PLUGIN-HOWTO +} + |