summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-03-31 19:00:48 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-03-31 19:00:48 +0000
commit79de8cb547b318ed7fcd3c84484f5eb2dcf74899 (patch)
tree70fcd03695a6b3576fe35fa5fad278feac25c807
parentinherit flag-o-matic for replace-flags; move replace-flags into function (Man... (diff)
downloadgentoo-2-79de8cb547b318ed7fcd3c84484f5eb2dcf74899.tar.gz
gentoo-2-79de8cb547b318ed7fcd3c84484f5eb2dcf74899.tar.bz2
gentoo-2-79de8cb547b318ed7fcd3c84484f5eb2dcf74899.zip
Version bumped.
-rw-r--r--sys-apps/smartmontools/ChangeLog7
-rw-r--r--sys-apps/smartmontools/Manifest2
-rw-r--r--sys-apps/smartmontools/files/digest-smartmontools-5.301
-rw-r--r--sys-apps/smartmontools/smartmontools-5.30.ebuild35
4 files changed, 44 insertions, 1 deletions
diff --git a/sys-apps/smartmontools/ChangeLog b/sys-apps/smartmontools/ChangeLog
index d6748382d2ed..1e849f64f3de 100644
--- a/sys-apps/smartmontools/ChangeLog
+++ b/sys-apps/smartmontools/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/smartmontools
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.30 2004/02/24 20:33:53 mholzer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.31 2004/03/31 19:00:48 mholzer Exp $
+
+*smartmontools-5.30 (31 Mar 2004)
+
+ 31 Mar 2004; Martin Holzer <mholzer@gentoo.org> smartmontools-5.30.ebuild:
+ Version bumped.
*smartmontools-5.29 (24 Feb 2004)
diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest
index cdb4c9c0b01e..83635cada9b5 100644
--- a/sys-apps/smartmontools/Manifest
+++ b/sys-apps/smartmontools/Manifest
@@ -6,6 +6,7 @@ MD5 402ca9b9d173a63a30874f1be64c292f smartmontools-5.25.ebuild 972
MD5 e4ce887794835f9ea46f84bcf936e93c smartmontools-5.26.ebuild 963
MD5 7f5fda63d4bfc6235785924ecd7a6acb smartmontools-5.27.ebuild 967
MD5 c71754cbb0ab7802c094c5678147ed02 smartmontools-5.29.ebuild 967
+MD5 c71754cbb0ab7802c094c5678147ed02 smartmontools-5.30.ebuild 967
MD5 905376c18cc462422f167333b0ed9a23 files/digest-smartmontools-5.1.11 72
MD5 1e0269a5a6ce30c68059bc968490269c files/digest-smartmontools-5.21 70
MD5 d6c2650cc53a84c40032287ab5e35ffb files/digest-smartmontools-5.25 70
@@ -13,3 +14,4 @@ MD5 7db3f665d7af7846d25b52b4bbbaba27 files/digest-smartmontools-5.26 70
MD5 274bf91846f51fc5e93f303e5d4710f9 files/smartd.rc 518
MD5 5da782fa903f1b671f4c62d94582b868 files/digest-smartmontools-5.27 70
MD5 771cee57b2bd2ffecf1b73329e7ae50e files/digest-smartmontools-5.29 70
+MD5 e7139ba9820a427c563c21362752bed3 files/digest-smartmontools-5.30 70
diff --git a/sys-apps/smartmontools/files/digest-smartmontools-5.30 b/sys-apps/smartmontools/files/digest-smartmontools-5.30
new file mode 100644
index 000000000000..52bd5315d7c7
--- /dev/null
+++ b/sys-apps/smartmontools/files/digest-smartmontools-5.30
@@ -0,0 +1 @@
+MD5 6713b5f2ea28a86a4af238c4c0e0b59d smartmontools-5.30.tar.gz 360349
diff --git a/sys-apps/smartmontools/smartmontools-5.30.ebuild b/sys-apps/smartmontools/smartmontools-5.30.ebuild
new file mode 100644
index 000000000000..000e24e15c86
--- /dev/null
+++ b/sys-apps/smartmontools/smartmontools-5.30.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.30.ebuild,v 1.1 2004/03/31 19:00:48 mholzer Exp $
+
+DESCRIPTION="control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (S.M.A.R.T.)"
+HOMEPAGE="http://smartmontools.sf.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+RESTRICT="nomirror"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~amd64 ~sparc"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ econf || die
+ emake ||die
+}
+
+src_install() {
+ dosbin smart{ctl,d}
+ doman *.8 *.5
+ dodoc AUTHORS CHANGELOG COPYING INSTALL NEWS README TODO WARNINGS
+ dodoc smartd.conf
+
+ exeinto /etc/init.d
+ newexe ${FILESDIR}/smartd.rc smartd
+}
+
+pkg_postinst() {
+ einfo "You can find an example smartd.conf file in"
+ einfo "/usr/share/doc/${PF}/smartd.conf.gz"
+ einfo "Just place it in /etc/ as smartd.conf"
+}