diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2017-09-27 14:42:33 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2017-09-27 14:45:07 -0700 |
commit | 7f7ec9c6508c5a3f7d41be75831254de43c89b2a (patch) | |
tree | 5a346666d0832e9196711dbb13b29ce7545a3a1a /sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild | |
parent | dev-java/icedtea-bin: Remove vulnerable 3.4.0 wrt bug #626088 (diff) | |
download | gentoo-7f7ec9c6508c5a3f7d41be75831254de43c89b2a.tar.gz gentoo-7f7ec9c6508c5a3f7d41be75831254de43c89b2a.tar.bz2 gentoo-7f7ec9c6508c5a3f7d41be75831254de43c89b2a.zip |
sys-apps/readahead-list: bump for confd tweak.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild')
-rw-r--r-- | sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild new file mode 100644 index 000000000000..80b37f7a964a --- /dev/null +++ b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Preloads files into the page cache to accelerate program loading" +HOMEPAGE="http://www.orbis-terrarum.net" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc" + +RDEPEND="" +DEPEND="${RDEPEND} + virtual/os-headers +" + +PATCHES=( + "${FILESDIR}/${P}-gcc-4.3.patch" + "${FILESDIR}/${P}-gcc6.patch" +) + +src_configure() { + econf --sbindir=/sbin +} + +src_install() { + default + + # init scripts + #cd "${S}/contrib/init/gentoo/" + newinitd "${FILESDIR}"/init.d-readahead-list readahead-list + newinitd "${FILESDIR}"/init.d-readahead-list-early readahead-list-early + newconfd "${FILESDIR}"/conf.d-readahead-list readahead-list + + # default config + insinto /etc/readahead-list + cd "${S}/contrib/data" + newins readahead.runlevel-default.list runlevel-default + newins readahead.runlevel-boot.list runlevel-boot + newins readahead._sbin_rc.list exec_sbin_rc + + # docs + cd "${S}" + if use doc; then + docinto scripts + dodoc contrib/scripts/* + fi + # clean up a bit + find "${D}/usr/share/doc/${PF}/" -type f -name 'Makefile*' -exec rm -f \{\} \; +} + +pkg_postinst() { + einfo "You should add readahead-list to your runlevels:" + einfo " rc-update add readahead-list-early boot" + einfo " rc-update add readahead-list boot" + einfo "Also consider customizing the lists in /etc/readahead-list" + einfo "for maximum performance gain." +} |