summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2005-03-16 11:24:29 +0000
committerAaron Walker <ka0ttic@gentoo.org>2005-03-16 11:24:29 +0000
commit7f06ee8724a775aed12ab847d954c5a686b1b857 (patch)
tree9c5af0c98e43c435605ee173ea3bdb5bf537410f /net-libs/libpcapnav/libpcapnav-0.5.ebuild
parentdisabling src_test (#85403) (diff)
downloadgentoo-2-7f06ee8724a775aed12ab847d954c5a686b1b857.tar.gz
gentoo-2-7f06ee8724a775aed12ab847d954c5a686b1b857.tar.bz2
gentoo-2-7f06ee8724a775aed12ab847d954c5a686b1b857.zip
Initial commit. Thanks to soulse in bug 84895 for the ebuild.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-libs/libpcapnav/libpcapnav-0.5.ebuild')
-rw-r--r--net-libs/libpcapnav/libpcapnav-0.5.ebuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/net-libs/libpcapnav/libpcapnav-0.5.ebuild b/net-libs/libpcapnav/libpcapnav-0.5.ebuild
new file mode 100644
index 000000000000..09fbfa19e46f
--- /dev/null
+++ b/net-libs/libpcapnav/libpcapnav-0.5.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libpcapnav/libpcapnav-0.5.ebuild,v 1.1 2005/03/16 11:24:29 ka0ttic Exp $
+
+DESCRIPTION="A libpcap wrapper library that allows navigation to arbitrary packets in a tcpdump trace file between reads, using timestamps or percentage offsets."
+HOMEPAGE="http://netdude.sourceforge.net/"
+SRC_URI="mirror://sourceforge/netdude/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="doc"
+
+DEPEND="virtual/libpcap"
+
+src_install() {
+ make DESTDIR="${D}" install || die "make install failed"
+ rm -fr ${D}/usr/share/gtk-doc
+ dodoc AUTHORS ChangeLog INSTALL README
+ use doc && dohtml -r docs/*.css docs/html/*.html docs/images
+}