blob: 39add91ade9e2acbe77f3beebdc2a3d31e98838e (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/noflushd/noflushd-2.4-r6.ebuild,v 1.4 2002/07/11 06:30:55 drobbins Exp $
# Note: the daemon's current 2.4 version has nothing to do with kernel versions
MY_P=${P/-/_}
S=${WORKDIR}/${P}.orig
SRC_URI="http://download.sourceforge.net/noflushd/${MY_P}.orig.tar.gz"
HOMEPAGE="http://noflushd.sourceforge.net"
DESCRIPTION="A daemon to spin down your disks and force accesses to be cached"
DEPEND="virtual/glibc
sys-devel/ld.so"
src_compile() {
./configure --prefix=/usr \
--host=${CHOST} \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-docdir=/usr/share/doc/${PF} || die
emake || die
}
src_install () {
dosbin src/noflushd
doman man/noflushd.8
dodoc README NEWS
exeinto /etc/init.d ; newexe ${FILESDIR}/noflushd.rc6 noflushd
insinto /etc/conf.d ; newins ${FILESDIR}/noflushd.confd noflushd
}
pkg_postinst() {
echo "
Run 'rc-update add noflushd' to add it to default runlevel.
WARNING:
WARNING: Do NOT use with SCSI, unstable!
WARNING: Has possible problems with reiserfs, too.
WARNING:
"
}
|