diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-10-30 20:51:29 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-10-30 20:51:29 +0000 |
commit | f1b44b346932354c7a63a453317cf118362dbdff (patch) | |
tree | 88456ecdd58fc0b783cb3798efa8c750a4ccce50 /sys-apps/mondo | |
parent | Updated ebuild to coincide with new diff (diff) | |
download | gentoo-2-f1b44b346932354c7a63a453317cf118362dbdff.tar.gz gentoo-2-f1b44b346932354c7a63a453317cf118362dbdff.tar.bz2 gentoo-2-f1b44b346932354c7a63a453317cf118362dbdff.zip |
version update, unstable profile
Diffstat (limited to 'sys-apps/mondo')
-rw-r--r-- | sys-apps/mondo/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/mondo/files/digest-mondo-0.9 | 1 | ||||
-rw-r--r-- | sys-apps/mondo/mondo-0.9.ebuild | 38 |
3 files changed, 46 insertions, 1 deletions
diff --git a/sys-apps/mondo/ChangeLog b/sys-apps/mondo/ChangeLog index 4726ae55f84b..c6a03f6ecde7 100644 --- a/sys-apps/mondo/ChangeLog +++ b/sys-apps/mondo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/mondo # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mondo/ChangeLog,v 1.3 2002/07/21 20:20:47 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mondo/ChangeLog,v 1.4 2002/10/30 20:51:29 lostlogic Exp $ + +*mondo-0.9 (30 Oct 2002) + + 30 Oct 2002; Brandon Low <lostlogic@gentoo.org> mondo-0.9.ebuild: + + Version update from upstream, ebuild fixes. *mondo-0.6 (15 May 2002) diff --git a/sys-apps/mondo/files/digest-mondo-0.9 b/sys-apps/mondo/files/digest-mondo-0.9 new file mode 100644 index 000000000000..72c265a104d4 --- /dev/null +++ b/sys-apps/mondo/files/digest-mondo-0.9 @@ -0,0 +1 @@ +MD5 3435e3c2cc684fcda1c680108efaa041 mondo-0.9.tar.bz2 116611 diff --git a/sys-apps/mondo/mondo-0.9.ebuild b/sys-apps/mondo/mondo-0.9.ebuild new file mode 100644 index 000000000000..d3ac5cd2ae36 --- /dev/null +++ b/sys-apps/mondo/mondo-0.9.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mondo/mondo-0.9.ebuild,v 1.1 2002/10/30 20:51:29 lostlogic Exp $ + +DESCRIPTION="A System Health Monitor" +HOMEPAGE="http://mondo-daemon.sourceforge.net/" +KEYWORDS="~x86 -ppc" +SLOT="0" +LICENSE="GPL-2" + +DEPEND=">=sys-apps/lm_sensors-2.6.3" + +SRC_URI="mirror://sourceforge/mondo-daemon/${P}.tar.bz2" +S=${WORKDIR}/${P} + +src_compile() { + econf || die "Configure failed" + emake || die +} + +src_install() { + einstall || die "Install failed" + + dodoc AUTHORS COPYING ChangeLog INSTALL README TODO + + exeinto /etc/init.d + newexe ${FILESDIR}/mondo.sh mondo +} + +pkg_postinst() { + einfo + einfo "The mondo system health monitor has been installed." + einfo + einfo "Don't forget to setup lm_sensors before starting mondo." + einfo "Run mondo-setup or edit /etc/mondo.conf manually and run" + einfo "'rc-update add mondo <runlevel>' to add mondo to a runlevel." + einfo +} |