blob: d6c7a2dd7cc1bd92023e45095de890146e89a849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit cmake-utils linux-info readme.gentoo
DESCRIPTION="Toolset to accelerate the boot process and application startup"
HOMEPAGE="http://e4rat.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P/-/_}_src.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="dev-lang/perl:=
>=dev-libs/boost-1.42:=
sys-fs/e2fsprogs
sys-process/audit
sys-process/lsof"
RDEPEND="${DEPEND}"
CONFIG_CHECK="~AUDITSYSCALL"
PATCHES=(
"${FILESDIR}"/${PN}-0.2.2-shared-build.patch
"${FILESDIR}"/${PN}-0.2.2-libdir.patch
"${FILESDIR}"/${P}-boostfsv3.patch
)
pkg_setup() {
check_extra_config
DOC_CONTENTS="
To launch systemd from e4rat you simply need to edit /etc/e4rat.conf
and set:\n
; path to init process binary (DEFAULT: /sbin/init)\n
init /usr/lib/systemd/systemd"
}
src_install() {
cmake-utils_src_install
# relocate binaries to /sbin. If someone knows of a better way to do it
# please do tell me
dodir sbin
find "${D}"/usr/sbin -type f -exec mv {} "${D}"/sbin/. \; \
|| die
dodoc README
readme.gentoo_create_doc
}
pkg_postinst() {
readme.gentoo_print_elog
if has_version sys-apps/preload; then
elog "It appears you have sys-apps/preload installed. This may"
elog "has negative effects on ${PN}. You may want to disable preload"
elog "when using ${PN}."
fi
}
|