summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2007-11-03 15:04:22 +0000
committerSamuli Suominen <drac@gentoo.org>2007-11-03 15:04:22 +0000
commit93099621d8547567b4ab632082d6f0f4f7c7552c (patch)
tree9be0b01423ce0e92c3c0a8b90a3cb5127eb4cfc3 /app-misc
parentVersion bump (diff)
downloadgentoo-2-93099621d8547567b4ab632082d6f0f4f7c7552c.tar.gz
gentoo-2-93099621d8547567b4ab632082d6f0f4f7c7552c.tar.bz2
gentoo-2-93099621d8547567b4ab632082d6f0f4f7c7552c.zip
bumb
(Portage version: 2.1.3.17)
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/uptimed/ChangeLog7
-rw-r--r--app-misc/uptimed/files/digest-uptimed-0.3.123
-rw-r--r--app-misc/uptimed/uptimed-0.3.12.ebuild39
3 files changed, 48 insertions, 1 deletions
diff --git a/app-misc/uptimed/ChangeLog b/app-misc/uptimed/ChangeLog
index fd5f3d28e089..d92321b6dfe4 100644
--- a/app-misc/uptimed/ChangeLog
+++ b/app-misc/uptimed/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/uptimed
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/ChangeLog,v 1.61 2007/05/16 15:46:01 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/ChangeLog,v 1.62 2007/11/03 15:04:21 drac Exp $
+
+*uptimed-0.3.12 (03 Nov 2007)
+
+ 03 Nov 2007; Samuli Suominen <drac@gentoo.org> +uptimed-0.3.12.ebuild:
+ Version bump.
16 May 2007; Raúl Porcel <armin76@gentoo.org> -uptimed-0.3.9.ebuild,
uptimed-0.3.11.ebuild:
diff --git a/app-misc/uptimed/files/digest-uptimed-0.3.12 b/app-misc/uptimed/files/digest-uptimed-0.3.12
new file mode 100644
index 000000000000..e21fc3b99a34
--- /dev/null
+++ b/app-misc/uptimed/files/digest-uptimed-0.3.12
@@ -0,0 +1,3 @@
+MD5 c523d6434b672107ea00559bb38eb050 uptimed-0.3.12.tar.bz2 238886
+RMD160 ffcfb47a538f7e236faefad2fa3e974791e2751f uptimed-0.3.12.tar.bz2 238886
+SHA256 8415d4bd4147c956d4d608f34ab6cda8765eee75f8650b92a5a2d8aa1575f773 uptimed-0.3.12.tar.bz2 238886
diff --git a/app-misc/uptimed/uptimed-0.3.12.ebuild b/app-misc/uptimed/uptimed-0.3.12.ebuild
new file mode 100644
index 000000000000..22ac9c5e07d5
--- /dev/null
+++ b/app-misc/uptimed/uptimed-0.3.12.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/uptimed-0.3.12.ebuild,v 1.1 2007/11/03 15:04:21 drac Exp $
+
+inherit autotools
+
+DESCRIPTION="System uptime record daemon that keeps track of your highest uptimes"
+HOMEPAGE="http://podgorny.cz/uptimed"
+SRC_URI="http://podgorny.cz/uptimed/releases/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ # respect DESTDIR
+ sed -i -e 's|-d \(/var/spool.*\)$|-d $(DESTDIR)\1|' Makefile.am || \
+ die "sed failed."
+
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed."
+ keepdir /var/spool/uptimed
+ dodoc ChangeLog README TODO AUTHORS CREDITS INSTALL.cgi sample-cgi/*
+ doinitd "${FILESDIR}"/uptimed
+}
+
+pkg_postinst() {
+ echo
+ elog "Start uptimed with '/etc/init.d/uptimed start'"
+ elog "To view your uptime records, use the command 'uprecords'."
+ echo
+}