diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-08-22 16:51:26 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-08-22 16:51:26 +0000 |
commit | 24bc82337a658905e59da0f16ec419337d446830 (patch) | |
tree | 684a42f1e5405cd90018d34dd2a86e6c72328da5 /sys-apps/smartmontools | |
parent | Version bumped. (diff) | |
download | historical-24bc82337a658905e59da0f16ec419337d446830.tar.gz historical-24bc82337a658905e59da0f16ec419337d446830.tar.bz2 historical-24bc82337a658905e59da0f16ec419337d446830.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.1.18 | 1 | ||||
-rw-r--r-- | sys-apps/smartmontools/smartmontools-5.1.18.ebuild | 36 |
3 files changed, 39 insertions, 2 deletions
diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest index d4d4da55efbf..09ab33aeff4d 100644 --- a/sys-apps/smartmontools/Manifest +++ b/sys-apps/smartmontools/Manifest @@ -1,10 +1,10 @@ MD5 4d5e99b7af670110c69a3cfdf23ff73d smartmontools-5.0.45.ebuild 968 MD5 ebbe2bcbb0959c5aced5211ca455f6b8 smartmontools-5.1.11.ebuild 1008 -MD5 bcb6572d4e787d7140fa3204ca69cac2 ChangeLog 1975 +MD5 30025b953b221eeaaddaed14cebde032 ChangeLog 2110 MD5 99cad24058a16ae02825b2cb4b00e129 smartmontools-5.1.14.ebuild 1006 MD5 60ddfaa75b430f19bf7d585af9df9780 smartmontools-5.1.16.ebuild 1009 MD5 17648cf5f98774646777e413341c9f2c smartmontools-5.1.17.ebuild 1010 -MD5 17648cf5f98774646777e413341c9f2c smartmontools-5.1.18.ebuild 1010 +MD5 c65ae1940a834d58b56da4847704324f smartmontools-5.1.18.ebuild 1010 MD5 432ca1c6b0ccb2ce8c44f223aebd61af files/digest-smartmontools-5.0.45 71 MD5 905376c18cc462422f167333b0ed9a23 files/digest-smartmontools-5.1.11 72 MD5 274bf91846f51fc5e93f303e5d4710f9 files/smartd.rc 518 diff --git a/sys-apps/smartmontools/files/digest-smartmontools-5.1.18 b/sys-apps/smartmontools/files/digest-smartmontools-5.1.18 new file mode 100644 index 000000000000..16f23e2caff2 --- /dev/null +++ b/sys-apps/smartmontools/files/digest-smartmontools-5.1.18 @@ -0,0 +1 @@ +MD5 3095fc172508fde8d9953d08a730857e smartmontools-5.1-18.tar.gz 170561 diff --git a/sys-apps/smartmontools/smartmontools-5.1.18.ebuild b/sys-apps/smartmontools/smartmontools-5.1.18.ebuild new file mode 100644 index 000000000000..edfa4752f338 --- /dev/null +++ b/sys-apps/smartmontools/smartmontools-5.1.18.ebuild @@ -0,0 +1,36 @@ +# 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.1.18.ebuild,v 1.1 2003/08/22 16:51:15 mholzer Exp $ + +MAJ_PV=${PV:0:3} +MIN_PV=${PV:4:6} + +MY_P="${PN}-${MAJ_PV}-${MIN_PV}" +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}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~sparc" + +S=${WORKDIR}/${MY_P} + +src_compile() { + emake CFLAGS="${CFLAGS}" || die +} + +src_install() { + dosbin smart{ctl,d} + doman *.8 *.5 + dodoc CHANGELOG WARNINGS README TODO VERSION 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" +} |