summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-31 11:45:18 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-31 11:45:18 +0000
commit1f68d10af411ec551517f9df65b0a2f06398bad0 (patch)
treea52482d30d7cce0015c4472feaa8529e33c84737 /sys-apps
parentDrop unused USE flag description. (diff)
downloadgentoo-2-1f68d10af411ec551517f9df65b0a2f06398bad0.tar.gz
gentoo-2-1f68d10af411ec551517f9df65b0a2f06398bad0.tar.bz2
gentoo-2-1f68d10af411ec551517f9df65b0a2f06398bad0.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/readahead-list/ChangeLog8
-rw-r--r--sys-apps/readahead-list/readahead-list-0.20050517.0220.ebuild57
2 files changed, 6 insertions, 59 deletions
diff --git a/sys-apps/readahead-list/ChangeLog b/sys-apps/readahead-list/ChangeLog
index a4edc8edf11a..fdd2c440c12f 100644
--- a/sys-apps/readahead-list/ChangeLog
+++ b/sys-apps/readahead-list/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/readahead-list
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/readahead-list/ChangeLog,v 1.19 2014/08/10 20:24:55 slyfox Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/readahead-list/ChangeLog,v 1.20 2015/05/31 11:45:18 mrueg Exp $
+
+ 31 May 2015; Manuel Rüger <mrueg@gentoo.org>
+ -readahead-list-0.20050517.0220.ebuild:
+ Remove old.
10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org>
readahead-list-0.20050517.0220.ebuild,
diff --git a/sys-apps/readahead-list/readahead-list-0.20050517.0220.ebuild b/sys-apps/readahead-list/readahead-list-0.20050517.0220.ebuild
deleted file mode 100644
index a93bc9b7687e..000000000000
--- a/sys-apps/readahead-list/readahead-list-0.20050517.0220.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 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.20050517.0220.ebuild,v 1.5 2014/08/10 20:24:55 slyfox Exp $
-
-DESCRIPTION="Preloads files into the page cache to accelerate program loading"
-HOMEPAGE="http://www.orbis-terrarum.net"
-SRC_URI="http://tirpitz.iat.sfu.ca/custom-software/${PN}/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ~amd64"
-IUSE="doc"
-
-RDEPEND=""
-# the blocked headers are broken
-# they don't compile properly!
-DEPEND="${RDEPEND}
- virtual/os-headers"
-
-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
- newinitd init.d-readahead-list-early readahead-list-early
- 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 \{} \;
-}
-
-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."
-}