summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2004-05-09 23:32:03 +0000
committerDaniel Black <dragonheart@gentoo.org>2004-05-09 23:32:03 +0000
commit912f1f641ee9e867f57bd0b26eaacf430b89ea3d (patch)
tree1b825928196ab6c34dc2043100bd9f1d5c34e20a /net-misc/snitch
parentRemove default RDEPEND. (Manifest recommit) (diff)
downloadgentoo-2-912f1f641ee9e867f57bd0b26eaacf430b89ea3d.tar.gz
gentoo-2-912f1f641ee9e867f57bd0b26eaacf430b89ea3d.tar.bz2
gentoo-2-912f1f641ee9e867f57bd0b26eaacf430b89ea3d.zip
Initial import. Bug #50462 thanks to S.Çaglar Onur <caglar.onur@tubitak.gov.tr>
Diffstat (limited to 'net-misc/snitch')
-rw-r--r--net-misc/snitch/ChangeLog10
-rw-r--r--net-misc/snitch/Manifest2
-rw-r--r--net-misc/snitch/files/digest-snitch-0.0.11
-rw-r--r--net-misc/snitch/metadata.xml12
-rw-r--r--net-misc/snitch/snitch-0.0.1.ebuild28
5 files changed, 53 insertions, 0 deletions
diff --git a/net-misc/snitch/ChangeLog b/net-misc/snitch/ChangeLog
new file mode 100644
index 000000000000..6a1d9f149e6b
--- /dev/null
+++ b/net-misc/snitch/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-misc/snitch
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/snitch/ChangeLog,v 1.1 2004/05/09 23:32:03 dragonheart Exp $
+
+*snitch-0.0.1 (10 May 2004)
+
+ 10 May 2004; Daniel Black <dragonheart@gentoo.org> +metadata.xml,
+ +snitch-0.0.1.ebuild:
+ Initial import. Bug #50462 thanks to S.Çaglar Onur <caglar.onur@tubitak.gov.tr>
+
diff --git a/net-misc/snitch/Manifest b/net-misc/snitch/Manifest
new file mode 100644
index 000000000000..8dd91d76611d
--- /dev/null
+++ b/net-misc/snitch/Manifest
@@ -0,0 +1,2 @@
+MD5 a57c287a37530a63bb2f555ce047c661 snitch-0.0.1.ebuild 579
+MD5 aaa8dbd23fc6ec2a7b08134bf717437d files/digest-snitch-0.0.1 63
diff --git a/net-misc/snitch/files/digest-snitch-0.0.1 b/net-misc/snitch/files/digest-snitch-0.0.1
new file mode 100644
index 000000000000..5b541862874a
--- /dev/null
+++ b/net-misc/snitch/files/digest-snitch-0.0.1
@@ -0,0 +1 @@
+MD5 304703ff3b31eddfd0cbdc1e556957a5 snitch-0.0.1.tar.gz 15265
diff --git a/net-misc/snitch/metadata.xml b/net-misc/snitch/metadata.xml
new file mode 100644
index 000000000000..b9fc2b9c6f11
--- /dev/null
+++ b/net-misc/snitch/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>dragonheart@gentoo.org</email>
+ <name>Daniel Black</name>
+ <description>A user ebuild that I felt obliged to include. Please take over if you want
+it</description>
+</maintainer>
+<longdescription></longdescription>
+</pkgmetadata>
diff --git a/net-misc/snitch/snitch-0.0.1.ebuild b/net-misc/snitch/snitch-0.0.1.ebuild
new file mode 100644
index 000000000000..5bb8f62bc688
--- /dev/null
+++ b/net-misc/snitch/snitch-0.0.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/snitch/snitch-0.0.1.ebuild,v 1.1 2004/05/09 23:32:03 dragonheart Exp $
+
+DESCRIPTION="Snitch is a powerful packetshaping utility that allows the user to easily harness the power of the Linux tc command to shape network traffic"
+HOMEPAGE="http://snitch.sourceforge.net/"
+
+SRC_URI="mirror://sourceforge/snitch/${P}.tar.gz"
+RESTRICT="nomirror"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+
+IUSE=""
+DEPEND="virtual/glibc"
+RDEPEND="${DEPEND}
+ >=net-firewall/iptables-1.2.9-r1"
+
+src_compile() {
+ emake || die "emake failed"
+}
+
+src_install() {
+ dosbin snitch
+ doman snitch.1
+ dodoc README docs/* sample_configs/*
+}