diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-26 20:41:56 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-26 20:41:56 +0000 |
commit | 7554db96a47b45a414f9747e84339da3177a84ca (patch) | |
tree | 15824a41e415a940229efb1f1375572f4f587b62 /net-analyzer/tcpdump | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-7554db96a47b45a414f9747e84339da3177a84ca.tar.gz gentoo-2-7554db96a47b45a414f9747e84339da3177a84ca.tar.bz2 gentoo-2-7554db96a47b45a414f9747e84339da3177a84ca.zip |
*** empty log message ***
Diffstat (limited to 'net-analyzer/tcpdump')
-rw-r--r-- | net-analyzer/tcpdump/tcpdump-3.5.2.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net-analyzer/tcpdump/tcpdump-3.5.2.ebuild b/net-analyzer/tcpdump/tcpdump-3.5.2.ebuild new file mode 100644 index 000000000000..d0e4976409a5 --- /dev/null +++ b/net-analyzer/tcpdump/tcpdump-3.5.2.ebuild @@ -0,0 +1,30 @@ +# 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.2.ebuild,v 1.1 2000/08/26 20:41:56 achim Exp $ + +P=tcpdump-3.5.2 +A=${P}.tar.gz +S=${WORKDIR}/tcpdump-3.5 +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 +} + + + |