summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2005-06-04 19:28:50 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2005-06-04 19:28:50 +0000
commit08ad7a2bdc3a35d1c377456b5aebf2f43edf0eeb (patch)
tree330d90907f86a0a31458337cdf20e8adf18f676a /net-analyzer
parentRemoving obsolete ebuild/patch. (diff)
downloadhistorical-08ad7a2bdc3a35d1c377456b5aebf2f43edf0eeb.tar.gz
historical-08ad7a2bdc3a35d1c377456b5aebf2f43edf0eeb.tar.bz2
historical-08ad7a2bdc3a35d1c377456b5aebf2f43edf0eeb.zip
Initial commit. Ebuild by Robin Johnson <robbat2@gentoo.org>.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/thrulay/ChangeLog10
-rw-r--r--net-analyzer/thrulay/Manifest6
-rw-r--r--net-analyzer/thrulay/files/digest-thrulay-0.61
-rw-r--r--net-analyzer/thrulay/files/thrulayd-conf.d9
-rw-r--r--net-analyzer/thrulay/files/thrulayd-init.d22
-rw-r--r--net-analyzer/thrulay/metadata.xml8
-rw-r--r--net-analyzer/thrulay/thrulay-0.6.ebuild25
7 files changed, 81 insertions, 0 deletions
diff --git a/net-analyzer/thrulay/ChangeLog b/net-analyzer/thrulay/ChangeLog
new file mode 100644
index 000000000000..e0bd677e8379
--- /dev/null
+++ b/net-analyzer/thrulay/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-analyzer/thrulay
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/ChangeLog,v 1.1 2005/06/04 19:28:50 robbat2 Exp $
+
+*thrulay-0.6 (04 Jun 2005)
+
+ 04 Jun 2005; Robin H. Johnson <robbat2@gentoo.org> +files/thrulayd-conf.d,
+ +files/thrulayd-init.d, +metadata.xml, +thrulay-0.6.ebuild:
+ Initial commit. Ebuild by Robin Johnson <robbat2@gentoo.org>.
+
diff --git a/net-analyzer/thrulay/Manifest b/net-analyzer/thrulay/Manifest
new file mode 100644
index 000000000000..57ad984c33f8
--- /dev/null
+++ b/net-analyzer/thrulay/Manifest
@@ -0,0 +1,6 @@
+MD5 a14b530f02673ba9fce5ab2f2fed33b5 thrulay-0.6.ebuild 702
+MD5 530bc6f887d53e53940230d6d00359ef ChangeLog 446
+MD5 21cd68602737d7c996bceabf6e62c468 metadata.xml 223
+MD5 22c6b7ad0b49aeb367c0160abcb9d894 files/thrulayd-init.d 674
+MD5 0df0073ca802c6d7e563f1d6976c1b76 files/digest-thrulay-0.6 62
+MD5 e4de7b3550ee143566a9226eac80b630 files/thrulayd-conf.d 366
diff --git a/net-analyzer/thrulay/files/digest-thrulay-0.6 b/net-analyzer/thrulay/files/digest-thrulay-0.6
new file mode 100644
index 000000000000..038ff29b0ead
--- /dev/null
+++ b/net-analyzer/thrulay/files/digest-thrulay-0.6
@@ -0,0 +1 @@
+MD5 4b596d993e61a17460dc8c78aacd690e thrulay-0.6.tar.gz 19397
diff --git a/net-analyzer/thrulay/files/thrulayd-conf.d b/net-analyzer/thrulay/files/thrulayd-conf.d
new file mode 100644
index 000000000000..1f99144b03ed
--- /dev/null
+++ b/net-analyzer/thrulay/files/thrulayd-conf.d
@@ -0,0 +1,9 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/files/thrulayd-conf.d,v 1.1 2005/06/04 19:28:50 robbat2 Exp $
+
+# The default window size is 4194304 bytes
+#THRULAYD_WINDOW="4194304"
+
+# By default, thrulayd will listen on 5003/tcp
+#THRULAYD_PORT="5003"
diff --git a/net-analyzer/thrulay/files/thrulayd-init.d b/net-analyzer/thrulay/files/thrulayd-init.d
new file mode 100644
index 000000000000..41beff7dbadb
--- /dev/null
+++ b/net-analyzer/thrulay/files/thrulayd-init.d
@@ -0,0 +1,22 @@
+#!/sbin/runscript
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/files/thrulayd-init.d,v 1.1 2005/06/04 19:28:50 robbat2 Exp $
+
+depend() {
+ use net
+}
+
+start() {
+ [ -n "${THRULAYD_WINDOW}" ] && THRULAYD_OPTS="${THRULAYD_OPTS} -w${THRULAYD_WINDOW}"
+ [ -n "${THRULAYD_PORT}" ] && THRULAYD_OPTS="${THRULAYD_OPTS} -p${THRULAYD_PORT}"
+ ebegin "Starting thrulayd"
+ start-stop-daemon --start --quiet --exec /usr/sbin/thrulayd -- ${THRULAYD_OPTS}
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping thrulayd"
+ start-stop-daemon --stop --quiet --exec /usr/sbin/thrulayd
+ eend $?
+}
diff --git a/net-analyzer/thrulay/metadata.xml b/net-analyzer/thrulay/metadata.xml
new file mode 100644
index 000000000000..5d9f5be9d49d
--- /dev/null
+++ b/net-analyzer/thrulay/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>robbat2@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/net-analyzer/thrulay/thrulay-0.6.ebuild b/net-analyzer/thrulay/thrulay-0.6.ebuild
new file mode 100644
index 000000000000..71e8541cf995
--- /dev/null
+++ b/net-analyzer/thrulay/thrulay-0.6.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/thrulay/thrulay-0.6.ebuild,v 1.1 2005/06/04 19:28:50 robbat2 Exp $
+
+DESCRIPTION="Measure the capacity of a network by sending a bulk TCP stream over it."
+HOMEPAGE="http://www.internet2.edu/~shalunov/thrulay/"
+SRC_URI="${HOMEPAGE}${P}.tar.gz"
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+DEPEND=""
+#RDEPEND=""
+
+src_compile() {
+ emake OPT="${CFLAGS}"
+}
+
+src_install() {
+ dobin thrulay
+ dosbin thrulayd
+ dodoc LICENSE README TODO thrulay-protocol.txt
+ newinitd ${FILESDIR}/thrulayd-init.d thrulayd
+ newconfd ${FILESDIR}/thrulayd-conf.d thrulayd
+}