diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2013-10-10 18:24:49 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2013-10-10 18:24:49 +0000 |
commit | 8c897669c6259be6b14eee105a9635928e03cf34 (patch) | |
tree | a8b455a3ad13c3686d71e0ce6b28ff7d69fb3b00 /sys-block/noflushd | |
parent | Version bump, as requested by Lars "Polynomial-C" Wendler in bug #487514. -pe... (diff) | |
download | gentoo-2-8c897669c6259be6b14eee105a9635928e03cf34.tar.gz gentoo-2-8c897669c6259be6b14eee105a9635928e03cf34.tar.bz2 gentoo-2-8c897669c6259be6b14eee105a9635928e03cf34.zip |
Version bump, as requested by Holger Hoffstätte in bug #410567.
(Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Diffstat (limited to 'sys-block/noflushd')
-rw-r--r-- | sys-block/noflushd/ChangeLog | 9 | ||||
-rw-r--r-- | sys-block/noflushd/noflushd-2.8.ebuild | 33 |
2 files changed, 40 insertions, 2 deletions
diff --git a/sys-block/noflushd/ChangeLog b/sys-block/noflushd/ChangeLog index bd499187ee6a..bc9c24ad9c0e 100644 --- a/sys-block/noflushd/ChangeLog +++ b/sys-block/noflushd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-block/noflushd -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/noflushd/ChangeLog,v 1.6 2009/04/11 15:18:15 vapier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/noflushd/ChangeLog,v 1.7 2013/10/10 18:24:49 chainsaw Exp $ + +*noflushd-2.8 (10 Oct 2013) + + 10 Oct 2013; Tony Vroon <chainsaw@gentoo.org> +noflushd-2.8.ebuild: + Version bump, as requested by Holger Hoffstätte in bug #410567. 11 Apr 2009; Mike Frysinger <vapier@gentoo.org> noflushd-2.7.5.ebuild: Force data/init dir sanity #265636 by Jeremy Stent. diff --git a/sys-block/noflushd/noflushd-2.8.ebuild b/sys-block/noflushd/noflushd-2.8.ebuild new file mode 100644 index 000000000000..35ba4d10700a --- /dev/null +++ b/sys-block/noflushd/noflushd-2.8.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-block/noflushd/noflushd-2.8.ebuild,v 1.1 2013/10/10 18:24:49 chainsaw Exp $ + +EAPI=5 + +DESCRIPTION="A daemon to spin down your disks and force accesses to be cached" +HOMEPAGE="http://noflushd.sourceforge.net/" +SRC_URI="mirror://sourceforge/noflushd/${PN}-${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +src_configure() { + econf \ + --with-docdir=/usr/share/doc/${PF} \ + --with-initdir=/etc/init.d +} + +src_install() { + emake install DESTDIR="${D}" + dodoc NEWS + + newinitd "${FILESDIR}"/noflushd.rc6 noflushd + newconfd "${FILESDIR}"/noflushd.confd noflushd +} + +pkg_postinst() { + ewarn "noflushd works with IDE devices only." + ewarn "It has possible problems with reiserfs, too." +} |