summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Portnoy <avenj@gentoo.org>2004-04-20 00:53:03 +0000
committerJon Portnoy <avenj@gentoo.org>2004-04-20 00:53:03 +0000
commit62260f12eda7364a1b11183557a626d27fb07213 (patch)
tree9b196b88fdcb15ea9b4d2e56fa97534cbfdf4370 /app-misc/pv
parentEnable threads with local USE flag 'threads'. #2024 (diff)
downloadhistorical-62260f12eda7364a1b11183557a626d27fb07213.tar.gz
historical-62260f12eda7364a1b11183557a626d27fb07213.tar.bz2
historical-62260f12eda7364a1b11183557a626d27fb07213.zip
Initial import
Diffstat (limited to 'app-misc/pv')
-rw-r--r--app-misc/pv/ChangeLog9
-rw-r--r--app-misc/pv/Manifest3
-rw-r--r--app-misc/pv/files/digest-pv-0.8.11
-rw-r--r--app-misc/pv/pv-0.8.1.ebuild19
4 files changed, 32 insertions, 0 deletions
diff --git a/app-misc/pv/ChangeLog b/app-misc/pv/ChangeLog
new file mode 100644
index 000000000000..ca36eb8beadf
--- /dev/null
+++ b/app-misc/pv/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-misc/pv
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/pv/ChangeLog,v 1.1 2004/04/20 00:53:03 avenj Exp $
+
+*pv-0.8.1 (19 Apr 2004)
+
+ 19 Apr 2004; Jon Portnoy <avenj@gentoo.org> pv-0.8.1.ebuild :
+ Initial import. Bug 36317. Submitted by Eric Harney
+ <eharney@clemson.edu>.
diff --git a/app-misc/pv/Manifest b/app-misc/pv/Manifest
new file mode 100644
index 000000000000..2f0868f8a767
--- /dev/null
+++ b/app-misc/pv/Manifest
@@ -0,0 +1,3 @@
+MD5 a5b0a1d6aff9e9a62e03163a4114c01d ChangeLog 371
+MD5 c7e0877de921131e77711c01fd24b32a pv-0.8.1.ebuild 651
+MD5 7d10e38953b610a7c418e78e0a4fcd76 files/digest-pv-0.8.1 59
diff --git a/app-misc/pv/files/digest-pv-0.8.1 b/app-misc/pv/files/digest-pv-0.8.1
new file mode 100644
index 000000000000..1f832966daed
--- /dev/null
+++ b/app-misc/pv/files/digest-pv-0.8.1
@@ -0,0 +1 @@
+MD5 5132e16a2a634122e2576679bdda231a pv-0.8.1.tar.gz 93005
diff --git a/app-misc/pv/pv-0.8.1.ebuild b/app-misc/pv/pv-0.8.1.ebuild
new file mode 100644
index 000000000000..6503f178eabc
--- /dev/null
+++ b/app-misc/pv/pv-0.8.1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/pv/pv-0.8.1.ebuild,v 1.1 2004/04/20 00:53:03 avenj Exp $
+
+DESCRIPTION="Pipe Viewer: a tool for monitoring the progress of data through a pipe"
+HOMEPAGE="http://www.ivarch.com/programs/pv.shtml"
+SRC_URI="mirror://sourceforge/pipeviewer/${P}.tar.gz"
+LICENSE="Artistic"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+DEPEND="virtual/glibc"
+
+src_compile() {
+ econf || die "configure failed"
+ emake || die "make failed"
+}
+src_install() {
+ make DESTDIR=${D} UNINSTALL=/bin/true install || die "install failed"
+}