summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2005-03-23 08:33:13 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2005-03-23 08:33:13 +0000
commit539cba449d2e676ceab3cd2561f29c5c683c5bec (patch)
tree4c538d626380c8d2219fff054ec5036ffaca7263 /sys-apps/readahead-list
parentmark stable (diff)
downloadgentoo-2-539cba449d2e676ceab3cd2561f29c5c683c5bec.tar.gz
gentoo-2-539cba449d2e676ceab3cd2561f29c5c683c5bec.tar.bz2
gentoo-2-539cba449d2e676ceab3cd2561f29c5c683c5bec.zip
New upstream release, adds filelist-order tool in a similar vein to the Ubuntu readahead.
(Portage version: 2.0.51.19)
Diffstat (limited to 'sys-apps/readahead-list')
-rw-r--r--sys-apps/readahead-list/ChangeLog9
-rw-r--r--sys-apps/readahead-list/Manifest2
-rw-r--r--sys-apps/readahead-list/files/digest-readahead-list-0.20050323.06581
-rw-r--r--sys-apps/readahead-list/readahead-list-0.20050323.0658.ebuild45
4 files changed, 56 insertions, 1 deletions
diff --git a/sys-apps/readahead-list/ChangeLog b/sys-apps/readahead-list/ChangeLog
index ad9a707ea88b..28b152b001bc 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.1 2005/03/21 07:22:25 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/readahead-list/ChangeLog,v 1.2 2005/03/23 08:33:12 robbat2 Exp $
+
+*readahead-list-0.20050323.0658 (23 Mar 2005)
+
+ 23 Mar 2005; Robin H. Johnson <robbat2@gentoo.org>
+ +readahead-list-0.20050323.0658.ebuild:
+ New upstream release, adds filelist-order tool in a similar vein to the
+ Ubuntu readahead.
*readahead-list-0.20050320.2320 (20 Mar 2005)
diff --git a/sys-apps/readahead-list/Manifest b/sys-apps/readahead-list/Manifest
index 9f9edd2d36d3..9c8f5e792f36 100644
--- a/sys-apps/readahead-list/Manifest
+++ b/sys-apps/readahead-list/Manifest
@@ -1,4 +1,6 @@
MD5 98d39a3e2ac8773ea9a71fd51e936fd0 readahead-list-0.20050320.2320.ebuild 1081
+MD5 b0f87e3acb2216f547c53cbba5870ab7 readahead-list-0.20050323.0658.ebuild 1243
MD5 098072d6f6604ab73a1b039c70a3a4fd ChangeLog 509
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
diff --git a/sys-apps/readahead-list/files/digest-readahead-list-0.20050323.0658 b/sys-apps/readahead-list/files/digest-readahead-list-0.20050323.0658
new file mode 100644
index 000000000000..6d451c460293
--- /dev/null
+++ b/sys-apps/readahead-list/files/digest-readahead-list-0.20050323.0658
@@ -0,0 +1 @@
+MD5 7227c77f267507993d7e5af7d6285ef9 readahead-list-0.20050323.0658.tar.bz2 103866
diff --git a/sys-apps/readahead-list/readahead-list-0.20050323.0658.ebuild b/sys-apps/readahead-list/readahead-list-0.20050323.0658.ebuild
new file mode 100644
index 000000000000..d7655a7fd4c9
--- /dev/null
+++ b/sys-apps/readahead-list/readahead-list-0.20050323.0658.ebuild
@@ -0,0 +1,45 @@
+# 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.20050323.0658.ebuild,v 1.1 2005/03/23 08:33:12 robbat2 Exp $
+
+DESCRIPTION="Perform readahead(2) to pre-cache files."
+HOMEPAGE="http://tirpitz.iat.sfu.ca/"
+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)
+DEPEND="virtual/libc"
+
+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/*
+ rm ${D}/usr/contrib/scripts/Makefile*
+ fi
+}