summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2004-03-28 03:08:12 +0000
committerDaniel Black <dragonheart@gentoo.org>2004-03-28 03:08:12 +0000
commit05ae58d9a83c0541d86e1d8e80cae5eb1f352703 (patch)
tree88f58443c000e64be1e5bda1f02700b000fc70b4
parentdon't assign default to S; tidy (diff)
downloadhistorical-05ae58d9a83c0541d86e1d8e80cae5eb1f352703.tar.gz
historical-05ae58d9a83c0541d86e1d8e80cae5eb1f352703.tar.bz2
historical-05ae58d9a83c0541d86e1d8e80cae5eb1f352703.zip
Initial import - thanks to Daniel Fullmer <lsmod@hotmail.com> in bug #44093
-rw-r--r--app-misc/pipeworks/ChangeLog10
-rw-r--r--app-misc/pipeworks/Manifest4
-rw-r--r--app-misc/pipeworks/files/digest-pipeworks-0.41
-rw-r--r--app-misc/pipeworks/metadata.xml15
-rw-r--r--app-misc/pipeworks/pipeworks-0.4.ebuild26
5 files changed, 56 insertions, 0 deletions
diff --git a/app-misc/pipeworks/ChangeLog b/app-misc/pipeworks/ChangeLog
new file mode 100644
index 000000000000..5f2a9205e84f
--- /dev/null
+++ b/app-misc/pipeworks/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for app-misc/pipeworks
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/pipeworks/ChangeLog,v 1.1 2004/03/28 03:08:04 dragonheart Exp $
+
+*pipeworks-0.4 (28 Mar 2004)
+
+ 28 Mar 2004; Daniel Black <dragonheart@gentoo.org> metadata.xml,
+ pipeworks-0.4.ebuild:
+ Initial import - thanks to Daniel Fullmer <lsmod@hotmail.com> in bug #44093
+
diff --git a/app-misc/pipeworks/Manifest b/app-misc/pipeworks/Manifest
new file mode 100644
index 000000000000..950b0f9564ba
--- /dev/null
+++ b/app-misc/pipeworks/Manifest
@@ -0,0 +1,4 @@
+MD5 8a68ae5e99e69efeda5b1c7cc9b581bf pipeworks-0.4.ebuild 658
+MD5 f1e5147500ed7ba549f2dd3e70bf0866 metadata.xml 598
+MD5 886806255ab252c0466b658023891773 ChangeLog 423
+MD5 d37662808abe973c8675a7d51e4d6e61 files/digest-pipeworks-0.4 64
diff --git a/app-misc/pipeworks/files/digest-pipeworks-0.4 b/app-misc/pipeworks/files/digest-pipeworks-0.4
new file mode 100644
index 000000000000..8657dddd45a9
--- /dev/null
+++ b/app-misc/pipeworks/files/digest-pipeworks-0.4
@@ -0,0 +1 @@
+MD5 2be1df1b5f7237a4474cffd0bcbb0079 pipeworks-0.4.tar.gz 11560
diff --git a/app-misc/pipeworks/metadata.xml b/app-misc/pipeworks/metadata.xml
new file mode 100644
index 000000000000..08c9ab7878fe
--- /dev/null
+++ b/app-misc/pipeworks/metadata.xml
@@ -0,0 +1,15 @@
+<?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>If someone wants to take this over they can</description>
+</maintainer>
+<longdescription>
+pipeworks is a benchmarking tool for pipelines that is very similar to pipemeter. It writes its stdin to its
+stdout, while reporting the data flow rate to stderr. It features adjustable block size and bandwidth limiting
+capabilities.
+</longdescription>
+</pkgmetadata>
diff --git a/app-misc/pipeworks/pipeworks-0.4.ebuild b/app-misc/pipeworks/pipeworks-0.4.ebuild
new file mode 100644
index 000000000000..56d9516e7eff
--- /dev/null
+++ b/app-misc/pipeworks/pipeworks-0.4.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/pipeworks/pipeworks-0.4.ebuild,v 1.1 2004/03/28 03:08:12 dragonheart Exp $
+
+DESCRIPTION="a small utility that measures throughput between stdin and stdout"
+SRC_URI="mirror://sourceforge/pipeworks/${P}.tar.gz"
+HOMEPAGE="http://pipeworks.sourceforge.net/"
+
+KEYWORDS="~x86"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+RESTRICT="nomirror"
+DEPEND="virtual/glibc"
+
+
+src_compile() {
+ emake || die "emake failed"
+}
+
+src_install() {
+ dobin pipeworks || die "dobin failed"
+ doman pipeworks.1
+ dodoc Changelog README
+}