diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-03-28 10:01:11 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-03-28 10:01:11 +0000 |
commit | d2303e41a2ba2c639f3046f447665ee78f9aed54 (patch) | |
tree | d2d419999308dbe6adbfd90b8181f7f541cc884c /sys-apps/readahead-list | |
parent | Fixed hppa patch && stable on hppa. (diff) | |
download | gentoo-2-d2303e41a2ba2c639f3046f447665ee78f9aed54.tar.gz gentoo-2-d2303e41a2ba2c639f3046f447665ee78f9aed54.tar.bz2 gentoo-2-d2303e41a2ba2c639f3046f447665ee78f9aed54.zip |
New upstream version. Add manpages. Build filelist-order with large file support. Code cleanup.
(Portage version: 2.0.51.19)
Diffstat (limited to 'sys-apps/readahead-list')
4 files changed, 63 insertions, 1 deletions
diff --git a/sys-apps/readahead-list/ChangeLog b/sys-apps/readahead-list/ChangeLog index 28b152b001bc..a9a78df4ba8c 100644 --- a/sys-apps/readahead-list/ChangeLog +++ b/sys-apps/readahead-list/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-apps/readahead-list # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/readahead-list/ChangeLog,v 1.2 2005/03/23 08:33:12 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/readahead-list/ChangeLog,v 1.3 2005/03/28 10:01:11 robbat2 Exp $ + +*readahead-list-0.20050328.0142 (28 Mar 2005) + + 28 Mar 2005; Robin H. Johnson <robbat2@gentoo.org> + +readahead-list-0.20050328.0142.ebuild: + New upstream version. Add manpages. Build filelist-order with large file + support. Code cleanup. *readahead-list-0.20050323.0658 (23 Mar 2005) diff --git a/sys-apps/readahead-list/Manifest b/sys-apps/readahead-list/Manifest index 45346b2eb32f..b68ed534617c 100644 --- a/sys-apps/readahead-list/Manifest +++ b/sys-apps/readahead-list/Manifest @@ -1,6 +1,8 @@ MD5 98d39a3e2ac8773ea9a71fd51e936fd0 readahead-list-0.20050320.2320.ebuild 1081 +MD5 db56f8dbd8bb5009fb0e93537e552716 readahead-list-0.20050328.0142.ebuild 1472 MD5 80a2995b54eef91e80d5a2d9903d398b readahead-list-0.20050323.0658.ebuild 1313 MD5 317332af9dd39fee150ca090168a4739 ChangeLog 746 MD5 9fed7d835204a85cc1da8ae9b3a81e10 metadata.xml 306 MD5 a30a550753bc067a2cf24fd8f2c106ba files/digest-readahead-list-0.20050320.2320 82 MD5 12838347caea6c623cfa189d8eeca91c files/digest-readahead-list-0.20050323.0658 83 +MD5 705c1a581218476779280f4af399247c files/digest-readahead-list-0.20050328.0142 83 diff --git a/sys-apps/readahead-list/files/digest-readahead-list-0.20050328.0142 b/sys-apps/readahead-list/files/digest-readahead-list-0.20050328.0142 new file mode 100644 index 000000000000..a5cec407acaa --- /dev/null +++ b/sys-apps/readahead-list/files/digest-readahead-list-0.20050328.0142 @@ -0,0 +1 @@ +MD5 ef10ce3e1ccb660b671252ad5d0af5bd readahead-list-0.20050328.0142.tar.bz2 106429 diff --git a/sys-apps/readahead-list/readahead-list-0.20050328.0142.ebuild b/sys-apps/readahead-list/readahead-list-0.20050328.0142.ebuild new file mode 100644 index 000000000000..63fe4106ffb3 --- /dev/null +++ b/sys-apps/readahead-list/readahead-list-0.20050328.0142.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/readahead-list/readahead-list-0.20050328.0142.ebuild,v 1.1 2005/03/28 10:01:11 robbat2 Exp $ + +DESCRIPTION="Preloads files into the page cache to accelerate program loading." + +HOMEPAGE="http://www.orbis-terrarum.net" +SRC_URI="${HOMEPAGE}/custom-software/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="doc" + +# I'm not entirely certain about this +# need to check if other libc variants provide readahead(2) +RDEPEND="virtual/libc" +# the blocked headers are broken +# they don't compile properly! +DEPEND="${RDEPEND} + virtual/os-headers + !=sys-kernel/linux26-headers-2.6.8.1*" + +src_compile() { + econf --sbindir=/sbin || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + # init scripts + cd ${S}/contrib/init/gentoo/ + newinitd init.d-readahead-list readahead-list + newconfd 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} + dodoc README + 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 \{} \; +} |