diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-03-06 19:19:20 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-03-06 19:19:20 +0000 |
commit | 2d76f0eb7a2e54bd442c87e1e6643d6b14c4358a (patch) | |
tree | 5823e588295603f3bfb195fcafcc0c3c74483b14 /sys-block/noflushd/noflushd-2.7.4.ebuild | |
parent | Added to ~ppc. (diff) | |
download | historical-2d76f0eb7a2e54bd442c87e1e6643d6b14c4358a.tar.gz historical-2d76f0eb7a2e54bd442c87e1e6643d6b14c4358a.tar.bz2 historical-2d76f0eb7a2e54bd442c87e1e6643d6b14c4358a.zip |
Moved from sys-apps/noflushd to sys-block/noflushd.
Diffstat (limited to 'sys-block/noflushd/noflushd-2.7.4.ebuild')
-rw-r--r-- | sys-block/noflushd/noflushd-2.7.4.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sys-block/noflushd/noflushd-2.7.4.ebuild b/sys-block/noflushd/noflushd-2.7.4.ebuild new file mode 100644 index 000000000000..9aa7aa60c758 --- /dev/null +++ b/sys-block/noflushd/noflushd-2.7.4.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/noflushd/noflushd-2.7.4.ebuild,v 1.1 2005/03/06 19:19:20 ciaranm Exp $ + +DESCRIPTION="A daemon to spin down your disks and force accesses to be cached" +HOMEPAGE="http://noflushd.sourceforge.net" +SRC_URI="mirror://sourceforge/noflushd/${P}.tar.gz" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~ppc" +IUSE="" +SLOT="0" + +DEPEND="virtual/libc" + +src_compile() { + ./configure --prefix=/usr \ + --host=${CHOST} \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --with-docdir=/usr/share/doc/${PF} || die "configure problem" + emake || die "compile problem" +} + +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() { + einfo 'Run "rc-update add noflushd default" to add it to the' + einfo "default runlevel." + + ewarn "noflushd works with IDE devices only." + ewarn "It has possible problems with reiserfs, too." +} |