diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-07 17:32:09 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-07 17:32:09 +0000 |
commit | 3670ce2d50d87f43d7ec656a16f97c9b3ce0d869 (patch) | |
tree | b2d3f188dca5d89991b46b17d90398f5c91ac79f /sys-apps/smartmontools | |
parent | Version bumped. (diff) | |
download | gentoo-2-3670ce2d50d87f43d7ec656a16f97c9b3ce0d869.tar.gz gentoo-2-3670ce2d50d87f43d7ec656a16f97c9b3ce0d869.tar.bz2 gentoo-2-3670ce2d50d87f43d7ec656a16f97c9b3ce0d869.zip |
Version bumped.
Diffstat (limited to 'sys-apps/smartmontools')
-rw-r--r-- | sys-apps/smartmontools/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/smartmontools/smartmontools-5.19.ebuild | 34 |
2 files changed, 36 insertions, 2 deletions
diff --git a/sys-apps/smartmontools/Manifest b/sys-apps/smartmontools/Manifest index 3eec63cc1e12..faa66d2cd1e2 100644 --- a/sys-apps/smartmontools/Manifest +++ b/sys-apps/smartmontools/Manifest @@ -1,9 +1,9 @@ -MD5 f54903e6aad5a8d8d7e7550b04021c9f ChangeLog 2441 +MD5 45b83f5857fe10da1b960f33a7723485 ChangeLog 2574 MD5 4d5e99b7af670110c69a3cfdf23ff73d smartmontools-5.0.45.ebuild 968 MD5 ebbe2bcbb0959c5aced5211ca455f6b8 smartmontools-5.1.11.ebuild 1008 MD5 fbac00822798f7c7f45054cf0b015071 smartmontools-5.1.16.ebuild 1006 MD5 8a2396b21744a076c0fd90b53b127b06 smartmontools-5.1.18.ebuild 1006 -MD5 b21d2473ce86014e5c5562d65855ef2e smartmontools-5.19.ebuild 933 +MD5 eab1568aa7d5d0867fe121a216909a8c smartmontools-5.19.ebuild 961 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/smartmontools-5.19.ebuild b/sys-apps/smartmontools/smartmontools-5.19.ebuild new file mode 100644 index 000000000000..d5702fc8c3ee --- /dev/null +++ b/sys-apps/smartmontools/smartmontools-5.19.ebuild @@ -0,0 +1,34 @@ +# 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.19.ebuild,v 1.1 2003/10/07 17:32:04 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 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" +} |