blob: 19ee0ba2c4664ab4a2d4910e9939633c8b8cfddf (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/noflushd/noflushd-2.4.ebuild,v 1.1 2001/07/23 19:47:01 danarmak Exp $
# Note: the daemon's current 2.4 version has nothing to do with kernel versions
#P=""
A=noflushd_2.4.orig.tar.gz
S=${WORKDIR}/${P}.orig
SRC_URI="http://download.suorceforge.net/noflushd/${A}"
HOMEPAGE="http://noflushd.sourceforge.net"
DESCRIPTION="A daemon to spin down your disks and force accesses to be cached"
DEPEND=""
src_compile() {
confopts="--infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} --with-docdir=/usr/share/doc/${P}"
try ./configure ${confopts}
try emake
}
src_install () {
# The orig. noflushd includes startup scripts for suse, debian and redhat.
# It detects gentoo as redhat (at least here it does), and in any case
# we don't want any of its rc.d scripts, so we install manually. There's
# only one binary and the docs.
cd ${S}
into /usr
dosbin src/noflushd
doman man/noflushd.8
dodoc README NEWS
exeinto /etc/rc.d/init.d
doexe ${FILESDIR}/noflushd
insinto /etc/env.d
doins ${FILESDIR}/70noflushd
}
pkg_postinst() {
# try to enable env-update settings
. /etc/profile.env
echo "
Run rc-update add noflushd to add it to runlevels 2 3 4.
Edit /etc/env.d/70noflushd to change the default spindown
timeout and the disks handled; the defaults are 60 minutes
and /dev/discs/disc0/disc (i.e. hda).
NOTE: you should re-login for the env-update changes to take
effect before you run noflushd for the first time.
WARNING:
WARNING: Do NOT use with SCSI, unstable!
WARNING:
"
}
|