summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Kennedy <mkennedy@gentoo.org>2002-04-16 04:22:44 +0000
committerMatthew Kennedy <mkennedy@gentoo.org>2002-04-16 04:22:44 +0000
commitfa5fe4958d9c20faaaf158976d954e2498bb7db7 (patch)
tree98102a47d24c8331ece4c7e060c3e167e31fabb6 /sys-apps/time
parentcleaned up ebuild (diff)
downloadgentoo-2-fa5fe4958d9c20faaaf158976d954e2498bb7db7.tar.gz
gentoo-2-fa5fe4958d9c20faaaf158976d954e2498bb7db7.tar.bz2
gentoo-2-fa5fe4958d9c20faaaf158976d954e2498bb7db7.zip
Resolves bug #1784
Diffstat (limited to 'sys-apps/time')
-rw-r--r--sys-apps/time/ChangeLog13
-rw-r--r--sys-apps/time/files/digest-time-1.7-r11
-rw-r--r--sys-apps/time/time-1.7-r1.ebuild31
3 files changed, 43 insertions, 2 deletions
diff --git a/sys-apps/time/ChangeLog b/sys-apps/time/ChangeLog
index c5efde70b127..5e728ef818c1 100644
--- a/sys-apps/time/ChangeLog
+++ b/sys-apps/time/ChangeLog
@@ -1,9 +1,18 @@
# ChangeLog for sys-apps/time
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/time/ChangeLog,v 1.1 2002/02/28 00:22:58 blocke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/time/ChangeLog,v 1.2 2002/04/16 04:22:44 mkennedy Exp $
-time-1.7 (27 Feb 2002)
+*time-1.7-r1 (15 Apr 2002)
+ 15 Apr 2002; Matthew Kennedy <mkennedy@gentoo.org>
+ time-1.7-r1.ebuild, ChangeLog, files/digest-time-1.7-r1 :
+
+ Resolves bug #1784 (thanks to set_48035@yahoo.com who submitted the
+ patch).
+
+
+*time-1.7 (27 Feb 2002)
+
27 Feb 2002; Bruce A. Locke <blocke@shivan.org> time-1.7.ebuild :
Time ebuild contributed by naz@themoonsofjupiter.net (Michael M Nazaroff)
diff --git a/sys-apps/time/files/digest-time-1.7-r1 b/sys-apps/time/files/digest-time-1.7-r1
new file mode 100644
index 000000000000..62b151f40451
--- /dev/null
+++ b/sys-apps/time/files/digest-time-1.7-r1
@@ -0,0 +1 @@
+MD5 e38d2b8b34b1ca259cf7b053caac32b3 time-1.7.tar.gz 103066
diff --git a/sys-apps/time/time-1.7-r1.ebuild b/sys-apps/time/time-1.7-r1.ebuild
new file mode 100644
index 000000000000..199131b76df3
--- /dev/null
+++ b/sys-apps/time/time-1.7-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# /space/gentoo/cvsroot/gentoo-x86/sys-apps/time/time-1.7.ebuild,v 1.1 2002/02/28 00:22:58 blocke Exp
+
+S=${WORKDIR}/${P}
+DESCRIPTION="A command that displays info about resources used by a program"
+SRC_URI="ftp://ftp.gnu.org/pub/gnu/time/${P}.tar.gz"
+HOMEPAGE="http://www.gnu.org/directory/time.html"
+
+DEPEND="virtual/glibc"
+
+src_compile() {
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man || die
+ emake || die
+}
+
+src_install () {
+ cd ${S}
+ echo "START-INFO-DIR-ENTRY
+* time: (time). summarize system resources used
+END-INFO-DIR-ENTRY" > temp
+ sed -e '/^trans/r temp' < time.info > time.info.new
+ mv time.info.new time.info
+
+ make prefix=${D}/usr sysconfdir=${D}/etc mandir=${D}/usr/share/man install || die
+ gzip -9 ${D}/usr/info/time.info
+ dodoc ChangeLog COPYING README
+ dodoc AUTHORS NEWS
+}
+