summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2005-03-21 07:22:25 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2005-03-21 07:22:25 +0000
commit3c3f2e8e28faee67beda0e100dd015c136772def (patch)
tree7cd23b7c074095f8aa28b0fca0a2f681ce0b450e /sys-apps
parentone inherit call (diff)
downloadhistorical-3c3f2e8e28faee67beda0e100dd015c136772def.tar.gz
historical-3c3f2e8e28faee67beda0e100dd015c136772def.tar.bz2
historical-3c3f2e8e28faee67beda0e100dd015c136772def.zip
Initial ebuild. Ebuild and upstream package by Robin H. Johnson <robbat2@gentoo.org>. See bug #64724 for some details on this.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/readahead-list/ChangeLog11
-rw-r--r--sys-apps/readahead-list/Manifest4
-rw-r--r--sys-apps/readahead-list/files/digest-readahead-list-0.20050320.23201
-rw-r--r--sys-apps/readahead-list/metadata.xml9
-rw-r--r--sys-apps/readahead-list/readahead-list-0.20050320.2320.ebuild38
5 files changed, 63 insertions, 0 deletions
diff --git a/sys-apps/readahead-list/ChangeLog b/sys-apps/readahead-list/ChangeLog
new file mode 100644
index 000000000000..ad9a707ea88b
--- /dev/null
+++ b/sys-apps/readahead-list/ChangeLog
@@ -0,0 +1,11 @@
+# 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 $
+
+*readahead-list-0.20050320.2320 (20 Mar 2005)
+
+ 20 Mar 2005; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml,
+ +readahead-list-0.20050320.2320.ebuild:
+ Initial ebuild. Ebuild and upstream package by Robin H. Johnson
+ <robbat2@gentoo.org>. See bug #64724 for some details on this.
+
diff --git a/sys-apps/readahead-list/Manifest b/sys-apps/readahead-list/Manifest
new file mode 100644
index 000000000000..9f9edd2d36d3
--- /dev/null
+++ b/sys-apps/readahead-list/Manifest
@@ -0,0 +1,4 @@
+MD5 98d39a3e2ac8773ea9a71fd51e936fd0 readahead-list-0.20050320.2320.ebuild 1081
+MD5 098072d6f6604ab73a1b039c70a3a4fd ChangeLog 509
+MD5 9fed7d835204a85cc1da8ae9b3a81e10 metadata.xml 306
+MD5 a30a550753bc067a2cf24fd8f2c106ba files/digest-readahead-list-0.20050320.2320 82
diff --git a/sys-apps/readahead-list/files/digest-readahead-list-0.20050320.2320 b/sys-apps/readahead-list/files/digest-readahead-list-0.20050320.2320
new file mode 100644
index 000000000000..49852a4a8aa5
--- /dev/null
+++ b/sys-apps/readahead-list/files/digest-readahead-list-0.20050320.2320
@@ -0,0 +1 @@
+MD5 98855afdc04dc11afe55eda2a82a3cd3 readahead-list-0.20050320.2320.tar.bz2 14425
diff --git a/sys-apps/readahead-list/metadata.xml b/sys-apps/readahead-list/metadata.xml
new file mode 100644
index 000000000000..c530161e6cdb
--- /dev/null
+++ b/sys-apps/readahead-list/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>base-system</herd>
+<maintainer>
+ <email>robbat2@gentoo.org</email>
+ <description>Upstream author as well as maintainer for Gentoo.</description>
+</maintainer>
+</pkgmetadata>
diff --git a/sys-apps/readahead-list/readahead-list-0.20050320.2320.ebuild b/sys-apps/readahead-list/readahead-list-0.20050320.2320.ebuild
new file mode 100644
index 000000000000..a52a207d9642
--- /dev/null
+++ b/sys-apps/readahead-list/readahead-list-0.20050320.2320.ebuild
@@ -0,0 +1,38 @@
+# 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.20050320.2320.ebuild,v 1.1 2005/03/21 07:22:25 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=""
+
+# I'm not entirely certain about this
+# need to check if other libc variants provide readahead(2)
+DEPEND="virtual/libc"
+
+src_compile() {
+ emake CFLAGS="${CFLAGS}" || die "emake failed"
+}
+
+src_install() {
+ into /
+ dosbin readahead-list
+ cd ${S}/init/gentoo/
+ newinitd init.d-readahead-list readahead-list
+ newconfd conf.d-readahead-list readahead-list
+ insinto /etc/readahead-list
+ # default config
+ cd ${S}/scripts/
+ 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
+ docinto scripts
+ dodoc scripts/*
+}