blob: 68efa85d7958400b80ef8e4183fc0a9c0dca1d2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# 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.1.11.ebuild,v 1.5 2004/05/24 09:59:32 kloeri 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"
}
|