diff options
author | 2022-12-25 21:08:28 +0000 | |
---|---|---|
committer | 2022-12-25 21:24:10 +0000 | |
commit | edbec5e721da2cb38c8beebee4d5ad0a079c2166 (patch) | |
tree | 11311b24e73e7ffeac58aad4e1538aaf7a5cbb5c /sys-apps/readahead-list/readahead-list-1.20060421.1016-r4.ebuild | |
parent | sys-apps/makedev: EAPI 8 (diff) | |
download | gentoo-edbec5e721da2cb38c8beebee4d5ad0a079c2166.tar.gz gentoo-edbec5e721da2cb38c8beebee4d5ad0a079c2166.tar.bz2 gentoo-edbec5e721da2cb38c8beebee4d5ad0a079c2166.zip |
sys-apps/readahead-list: EAPI 8, fix build w/ Clang 16
Closes: https://bugs.gentoo.org/875047
Closes: https://bugs.gentoo.org/851825
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/readahead-list/readahead-list-1.20060421.1016-r4.ebuild')
-rw-r--r-- | sys-apps/readahead-list/readahead-list-1.20060421.1016-r4.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/sys-apps/readahead-list/readahead-list-1.20060421.1016-r4.ebuild b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r4.ebuild new file mode 100644 index 000000000000..1c06ff2d1e17 --- /dev/null +++ b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r4.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Preloads files into the page cache to accelerate program loading" +HOMEPAGE="https://github.com/robbat2/readahead-list" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="doc" + +DEPEND="virtual/os-headers" + +PATCHES=( + "${FILESDIR}/1.20060421.1016/" +) + +src_prepare() { + default + + # Drop once ${P}-modernisation.patch is in a release + eautoreconf +} + +src_configure() { + econf --sbindir=/sbin +} + +src_install() { + default + + # Init scripts + #cd "${S}/contrib/init/gentoo" || die + #newinitd init.d-readahead-list readahead-list + #newinitd init.d-readahead-list-early readahead-list-early + #newconfd conf.d-readahead-list readahead-list + 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" || die + 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}" || die + if use doc; then + docinto scripts + dodoc contrib/scripts/* + fi + + # Clean up a bit + find "${ED}/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 ${EROOT}/etc/readahead-list" + einfo "for maximum performance gain." +} |