diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-12-17 12:13:01 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-12-17 12:13:01 +0000 |
commit | d1a8331d25ad73851de4b3ef1c342927a46b0d7b (patch) | |
tree | 6b63b622725fa10c96be663abc128a8556e0545a /app-misc | |
parent | Fixed bug #251270 (inclusion of binary files for SunOS and Mac) (diff) | |
download | gentoo-2-d1a8331d25ad73851de4b3ef1c342927a46b0d7b.tar.gz gentoo-2-d1a8331d25ad73851de4b3ef1c342927a46b0d7b.tar.bz2 gentoo-2-d1a8331d25ad73851de4b3ef1c342927a46b0d7b.zip |
Version bump wrt #251094
(Portage version: 2.1.4.5)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/uptimed/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/uptimed/uptimed-0.3.13.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/app-misc/uptimed/ChangeLog b/app-misc/uptimed/ChangeLog index 0e2367839298..74dfd48c83a0 100644 --- a/app-misc/uptimed/ChangeLog +++ b/app-misc/uptimed/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/uptimed # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/ChangeLog,v 1.67 2008/01/20 19:11:20 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/ChangeLog,v 1.68 2008/12/17 12:13:01 armin76 Exp $ + +*uptimed-0.3.13 (17 Dec 2008) + + 17 Dec 2008; Raúl Porcel <armin76@gentoo.org> +uptimed-0.3.13.ebuild: + Version bump wrt #251094 20 Jan 2008; Christoph Mende <angelos@gentoo.org> uptimed-0.3.12.ebuild: Stable on amd64 wrt bug #206562 diff --git a/app-misc/uptimed/uptimed-0.3.13.ebuild b/app-misc/uptimed/uptimed-0.3.13.ebuild new file mode 100644 index 000000000000..ca1b151bcadc --- /dev/null +++ b/app-misc/uptimed/uptimed-0.3.13.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/uptimed/uptimed-0.3.13.ebuild,v 1.1 2008/12/17 12:13:01 armin76 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 +} |