diff options
author | Michael Boman <mboman@gentoo.org> | 2003-12-17 09:58:13 +0000 |
---|---|---|
committer | Michael Boman <mboman@gentoo.org> | 2003-12-17 09:58:13 +0000 |
commit | 50239473715aea0c19c133279617324af8dae021 (patch) | |
tree | 3257c23df3de02b4b1a202c28904fa7e8d8e943c /net-analyzer/tcpslice | |
parent | New package. (diff) | |
download | gentoo-2-50239473715aea0c19c133279617324af8dae021.tar.gz gentoo-2-50239473715aea0c19c133279617324af8dae021.tar.bz2 gentoo-2-50239473715aea0c19c133279617324af8dae021.zip |
New package.
Diffstat (limited to 'net-analyzer/tcpslice')
-rw-r--r-- | net-analyzer/tcpslice/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/tcpslice/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/tcpslice/files/digest-tcpslice-1.1_alpha3 | 2 | ||||
-rw-r--r-- | net-analyzer/tcpslice/metadata.xml | 10 | ||||
-rw-r--r-- | net-analyzer/tcpslice/tcpslice-1.1_alpha3.ebuild | 37 |
5 files changed, 61 insertions, 1 deletions
diff --git a/net-analyzer/tcpslice/ChangeLog b/net-analyzer/tcpslice/ChangeLog new file mode 100644 index 000000000000..aa1d1adce9a1 --- /dev/null +++ b/net-analyzer/tcpslice/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-analyzer/tcpslice +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpslice/ChangeLog,v 1.1 2003/12/17 09:57:52 mboman Exp $ + +*tcpslice-1.1_alpha3 (17 Dec 2003) + + 17 Dec 2003; Michael Boman <mboman@gentoo.org> tcpslice-1.1_alpha3.ebuild: + New package. + diff --git a/net-analyzer/tcpslice/Manifest b/net-analyzer/tcpslice/Manifest index 9f490e39f181..10ad982849e7 100644 --- a/net-analyzer/tcpslice/Manifest +++ b/net-analyzer/tcpslice/Manifest @@ -1,2 +1,4 @@ -MD5 7adc3ecaaf3cbef918ad60f88af80684 tcpslice-1.1_alpha3.ebuild 695 +MD5 45638e14e3d4708c2464444f0d223f28 tcpslice-1.1_alpha3.ebuild 1129 +MD5 cdbd8cd8176c6c03ed3f05c55a756a80 metadata.xml 466 +MD5 3d4637606ee4ca351793483fb28f0e60 ChangeLog 353 MD5 169f554c588ee6189a800e3355f66d24 files/digest-tcpslice-1.1_alpha3 140 diff --git a/net-analyzer/tcpslice/files/digest-tcpslice-1.1_alpha3 b/net-analyzer/tcpslice/files/digest-tcpslice-1.1_alpha3 new file mode 100644 index 000000000000..8f56e349ae5d --- /dev/null +++ b/net-analyzer/tcpslice/files/digest-tcpslice-1.1_alpha3 @@ -0,0 +1,2 @@ +MD5 bad1336607786368e2f13ff584dbc635 tcpslice_1.1a3.orig.tar.gz 57187 +MD5 8477472e616fa23dda6f63118f2bd50d tcpslice_1.1a3-1.1.diff.gz 21000 diff --git a/net-analyzer/tcpslice/metadata.xml b/net-analyzer/tcpslice/metadata.xml new file mode 100644 index 000000000000..2935ea6358aa --- /dev/null +++ b/net-analyzer/tcpslice/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>hardened</herd> + <maintainer> + <email>mboman@gentoo.org</email> + <description>Primary Maintainer</description> + </maintainer> +<longdescription>Tcpslice is a program for extracting portions of packet-trace files generated using tcpdump's -w flag. It can also be used to glue together pcap dump files.</longdescription> +</pkgmetadata> diff --git a/net-analyzer/tcpslice/tcpslice-1.1_alpha3.ebuild b/net-analyzer/tcpslice/tcpslice-1.1_alpha3.ebuild new file mode 100644 index 000000000000..f6a776f930f1 --- /dev/null +++ b/net-analyzer/tcpslice/tcpslice-1.1_alpha3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpslice/tcpslice-1.1_alpha3.ebuild,v 1.1 2003/12/17 09:57:52 mboman Exp $ + +# Note: this ebuild is not of the best quality as it is entirely +# static. However I belive that I will get away with it as the software +# itself haven't been updated since 1996. + +DESCRIPTION="Tcpslice is a program for extracting portions of packet-trace files generated using tcpdump's -w flag. It can also be used to glue together pcap dump files." +HOMEPAGE="http://www.tcpdump.org/" +SRC_URI="ftp://ftp.debian.org/debian/pool/main/t/tcpslice/tcpslice_1.1a3.orig.tar.gz + ftp://ftp.debian.org/debian/pool/main/t/tcpslice/tcpslice_1.1a3-1.1.diff.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/glibc + >=net-libs/libpcap-0.6.2-r1" + +RDEPEND="${DEPEND}" +S=${WORKDIR}/tcpslice-1.1a3 + +src_unpack() { + unpack ${A} + epatch ${DISTDIR}/tcpslice_1.1a3-1.1.diff.gz +} + +src_compile() { + econf || die + emake || die +} + +src_install() { + dosbin tcpslice + doman tcpslice.1 + dodoc README +} |