diff options
author | 2004-08-15 09:03:02 +0000 | |
---|---|---|
committer | 2004-08-15 09:03:02 +0000 | |
commit | f400780254df477157c996867b387d3fc65de123 (patch) | |
tree | 2720fcc31316b89a4d31f5ff9d9bf192d4f9d383 /net-analyzer/tcptrace/tcptrace-6.6.1-r1.ebuild | |
parent | work with the new 0.6.5 install style (Manifest recommit) (diff) | |
download | gentoo-2-f400780254df477157c996867b387d3fc65de123.tar.gz gentoo-2-f400780254df477157c996867b387d3fc65de123.tar.bz2 gentoo-2-f400780254df477157c996867b387d3fc65de123.zip |
Added xpl2gpl and info about xplot and conversion to gnuplot.
Diffstat (limited to 'net-analyzer/tcptrace/tcptrace-6.6.1-r1.ebuild')
-rw-r--r-- | net-analyzer/tcptrace/tcptrace-6.6.1-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/net-analyzer/tcptrace/tcptrace-6.6.1-r1.ebuild b/net-analyzer/tcptrace/tcptrace-6.6.1-r1.ebuild new file mode 100644 index 000000000000..67530f0f9929 --- /dev/null +++ b/net-analyzer/tcptrace/tcptrace-6.6.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcptrace/tcptrace-6.6.1-r1.ebuild,v 1.1 2004/08/15 09:03:02 eldad Exp $ + +IUSE="" + +DESCRIPTION="A Tool for analyzing network packet dumps" +HOMEPAGE="http://www.tcptrace.org/" +SRC_URI="http://www.tcptrace.org/download/${P}.tar.gz + http://www.tcptrace.org/download/old/6.6/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~amd64" + +DEPEND="net-libs/libpcap" + +src_compile() { + econf || die + emake || die +} + +src_install() { + dobin tcptrace + dobin xpl2gpl + + newman tcptrace.man tcptrace.1 + dodoc CHANGES COPYING COPYRIGHT FAQ INSTALL README* THANKS WWW +} + +pkg_postinst() { + einfo "" + einfo "Note: tcptrace outputs its graphs in the xpl (xplot)" + einfo "format. since xplot is unavailable, you will have to" + einfo "use the included xpl2gpl utility to convert it to" + einfo "the gnuplot format." + einfo "" +} |