diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-08 21:00:06 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-08 21:00:06 +0000 |
commit | 3185cb95fd4130d349c56623dd566e797d0505c3 (patch) | |
tree | edb5b941d8194af2440a5b859bbb18c8a8d6ba2c /sys-apps | |
parent | Version bumped. (diff) | |
download | gentoo-2-3185cb95fd4130d349c56623dd566e797d0505c3.tar.gz gentoo-2-3185cb95fd4130d349c56623dd566e797d0505c3.tar.bz2 gentoo-2-3185cb95fd4130d349c56623dd566e797d0505c3.zip |
Version bumped.
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/smartmontools/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/smartmontools/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/smartmontools/files/digest-smartmontools-5.20 | 1 | ||||
-rw-r--r-- | sys-apps/smartmontools/smartmontools-5.20.ebuild | 35 |
4 files changed, 44 insertions, 3 deletions
diff --git a/sys-apps/smartmontools/ChangeLog b/sys-apps/smartmontools/ChangeLog index 72c28621dc52..c474f5efb1ca 100644 --- a/sys-apps/smartmontools/ChangeLog +++ b/sys-apps/smartmontools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/smartmontools # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.19 2003/10/07 17:32:04 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.20 2003/10/08 20:57:54 mholzer Exp $ + +*smartmontools-5.20 (09 Oct 2003) + + 09 Oct 2003; Martin Holzer <mholzer@gentoo.org> smartmontools-5.20.ebuild: + Version bumped. *smartmontools-5.19 (08 Oct 2003) diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest index 21da11ae57d2..bacf89928c7a 100644 --- a/sys-apps/smartmontools/Manifest +++ b/sys-apps/smartmontools/Manifest @@ -1,5 +1,5 @@ -MD5 45b83f5857fe10da1b960f33a7723485 ChangeLog 2574 -MD5 89f425a88b382d113b3da213fe963616 smartmontools-5.20.ebuild 962 +MD5 9c784dd82b2aafe96114b7fa90ac8db8 ChangeLog 2705 +MD5 beea2d7544b3af345698011c4e120122 smartmontools-5.20.ebuild 990 MD5 ebbe2bcbb0959c5aced5211ca455f6b8 smartmontools-5.1.11.ebuild 1008 MD5 8a2396b21744a076c0fd90b53b127b06 smartmontools-5.1.18.ebuild 1006 MD5 89f425a88b382d113b3da213fe963616 smartmontools-5.19.ebuild 962 diff --git a/sys-apps/smartmontools/files/digest-smartmontools-5.20 b/sys-apps/smartmontools/files/digest-smartmontools-5.20 new file mode 100644 index 000000000000..d4cb29332044 --- /dev/null +++ b/sys-apps/smartmontools/files/digest-smartmontools-5.20 @@ -0,0 +1 @@ +MD5 5472f11a0ca4d6e0458e252e02b4ac63 smartmontools-5.20.tar.gz 291712 diff --git a/sys-apps/smartmontools/smartmontools-5.20.ebuild b/sys-apps/smartmontools/smartmontools-5.20.ebuild new file mode 100644 index 000000000000..836cdf9cc1aa --- /dev/null +++ b/sys-apps/smartmontools/smartmontools-5.20.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.20.ebuild,v 1.1 2003/10/08 20:57:54 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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~sparc" + +S=${WORKDIR}/${P} + +src_compile() { + econf || die + emake ||die +# emake CFLAGS="${CFLAGS}" || 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" +} |