diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-28 12:48:46 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-28 12:48:46 +0000 |
commit | c58d53ee020dc31ba312388e745523e3da0b132f (patch) | |
tree | 8a845d12f231b123756e872b40618b9eb8d10ce2 /sys-apps/smartmontools | |
parent | Version bumped. (diff) | |
download | historical-c58d53ee020dc31ba312388e745523e3da0b132f.tar.gz historical-c58d53ee020dc31ba312388e745523e3da0b132f.tar.bz2 historical-c58d53ee020dc31ba312388e745523e3da0b132f.zip |
Version bumped.
Diffstat (limited to 'sys-apps/smartmontools')
-rw-r--r-- | sys-apps/smartmontools/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/smartmontools/files/digest-smartmontools-5.22 | 1 | ||||
-rw-r--r-- | sys-apps/smartmontools/smartmontools-5.21.ebuild | 3 | ||||
-rw-r--r-- | sys-apps/smartmontools/smartmontools-5.22.ebuild | 35 |
4 files changed, 40 insertions, 3 deletions
diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest index 7f8c19629441..09034e882627 100644 --- a/sys-apps/smartmontools/Manifest +++ b/sys-apps/smartmontools/Manifest @@ -1,7 +1,7 @@ MD5 d8719038fcdcd0b30ada3ca2da4df40b ChangeLog 2836 -MD5 1f3217e84e2f6dd13bf6f906d9b9a96e smartmontools-5.22.ebuild 976 +MD5 2baa4ad8d4cc74da6606e9afa683c779 smartmontools-5.22.ebuild 976 MD5 ebbe2bcbb0959c5aced5211ca455f6b8 smartmontools-5.1.11.ebuild 1008 -MD5 1f3217e84e2f6dd13bf6f906d9b9a96e smartmontools-5.21.ebuild 976 +MD5 4577843e8f075bf3c9ea493d2a810966 smartmontools-5.21.ebuild 976 MD5 8a2396b21744a076c0fd90b53b127b06 smartmontools-5.1.18.ebuild 1006 MD5 6a02f6ba10267e8d1b85b50a58c9d089 files/digest-smartmontools-5.22 70 MD5 905376c18cc462422f167333b0ed9a23 files/digest-smartmontools-5.1.11 72 diff --git a/sys-apps/smartmontools/files/digest-smartmontools-5.22 b/sys-apps/smartmontools/files/digest-smartmontools-5.22 new file mode 100644 index 000000000000..a37a004256bc --- /dev/null +++ b/sys-apps/smartmontools/files/digest-smartmontools-5.22 @@ -0,0 +1 @@ +MD5 9a6dfaff993f88f20af1b9a16cd3fd21 smartmontools-5.22.tar.gz 336907 diff --git a/sys-apps/smartmontools/smartmontools-5.21.ebuild b/sys-apps/smartmontools/smartmontools-5.21.ebuild index 4baeaadc5942..694db3ae2123 100644 --- a/sys-apps/smartmontools/smartmontools-5.21.ebuild +++ b/sys-apps/smartmontools/smartmontools-5.21.ebuild @@ -1,10 +1,11 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.21.ebuild,v 1.1 2003/10/17 16:16:48 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.21.ebuild,v 1.2 2003/10/28 12:48:42 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.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +RESTRICT="nomirror" LICENSE="GPL-2" SLOT="0" diff --git a/sys-apps/smartmontools/smartmontools-5.22.ebuild b/sys-apps/smartmontools/smartmontools-5.22.ebuild new file mode 100644 index 000000000000..dfb33faa9935 --- /dev/null +++ b/sys-apps/smartmontools/smartmontools-5.22.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-5.22.ebuild,v 1.1 2003/10/28 12:48:42 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.sourceforge.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" +} |