diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-08 16:06:07 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-08 16:06:07 +0000 |
commit | 801c3e9c067b7962abaaf6e31207e42536e12e2a (patch) | |
tree | 541d9de2628ff98f95a971c7d28e5493c1e071ec /net-analyzer/tcpdump | |
parent | *** empty log message *** (diff) | |
download | historical-801c3e9c067b7962abaaf6e31207e42536e12e2a.tar.gz historical-801c3e9c067b7962abaaf6e31207e42536e12e2a.tar.bz2 historical-801c3e9c067b7962abaaf6e31207e42536e12e2a.zip |
*** empty log message ***
Diffstat (limited to 'net-analyzer/tcpdump')
-rw-r--r-- | net-analyzer/tcpdump/files/digest | 1 | ||||
-rw-r--r-- | net-analyzer/tcpdump/tcpdump-3.5-r1.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/net-analyzer/tcpdump/files/digest b/net-analyzer/tcpdump/files/digest new file mode 100644 index 000000000000..7e15b06b082a --- /dev/null +++ b/net-analyzer/tcpdump/files/digest @@ -0,0 +1 @@ +MD5 d4bf4d3a546168bae75b55552942f398 tcpdump-3.5.tar.gz diff --git a/net-analyzer/tcpdump/tcpdump-3.5-r1.ebuild b/net-analyzer/tcpdump/tcpdump-3.5-r1.ebuild new file mode 100644 index 000000000000..d0609caa6689 --- /dev/null +++ b/net-analyzer/tcpdump/tcpdump-3.5-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/tcpdump-3.5-r1.ebuild,v 1.1 2000/08/08 16:06:07 achim Exp $ + +P=tcpdump-3.5 +A=${P}.tar.gz +S=${WORKDIR}/tcpdump_3_5rel2 +CATEGORY="net-analyzer" +DESCRIPTION="A Tool for network monitoring and data acquisition" +SRC_URI="http://www.tcpdump.org/release/${A} + http://www.jp.tcpdump.org/release/${A}" +HOMEPAGE="http://www.tcpdump.org/" + + +src_compile() { + cd ${S} + ./configure --host=${CHOST} --prefix=/usr + make +} + +src_install() { + cd ${S} + into /usr + dobin tcpdump + doman tcpdump.1 + dodoc README FILES VERSION CHANGES +} + + + |