blob: 3361f660c428cae570e68add07949bfb25de9fb5 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.86-r10.ebuild,v 1.8 2008/01/10 09:01:21 vapier Exp $
inherit eutils toolchain-funcs flag-o-matic
DESCRIPTION="/sbin/init - parent of all processes"
HOMEPAGE="http://freshmeat.net/projects/sysvinit/"
SRC_URI="ftp://ftp.cistron.nl/pub/people/miquels/software/${P}.tar.gz
ftp://sunsite.unc.edu/pub/Linux/system/daemons/init/${P}.tar.gz
http://www.gc-linux.org/down/isobel/kexec/sysvinit/sysvinit-2.86-kexec.patch"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE="selinux ibm static kernel_FreeBSD"
RDEPEND="selinux? ( >=sys-libs/libselinux-1.28 )"
DEPEND="${RDEPEND}
virtual/os-headers"
src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
cp "${FILESDIR}"/change_console.{c,8} src/ || die
epatch "${FILESDIR}"/${P}-docs.patch
epatch "${FILESDIR}"/${P}-shutdown-usage.patch
epatch "${FILESDIR}"/${P}-off-by-one.patch
epatch "${DISTDIR}"/${P}-kexec.patch
epatch "${FILESDIR}"/${P}-execl.patch
epatch "${FILESDIR}"/${P}-utmp-64bit.patch
epatch "${FILESDIR}"/${P}-shutdown-single.patch
epatch "${FILESDIR}"/${P}-utmp-smp.patch
epatch "${FILESDIR}"/${P}-build.patch
use selinux && epatch "${FILESDIR}"/${PV}-selinux-1.patch
# Mung inittab for specific architectures
cd "${WORKDIR}"
cp "${FILESDIR}"/inittab . || die "cp inittab"
local insert=""
use ppc && insert='#psc0:12345:respawn:/sbin/agetty 115200 ttyPSC0 linux'
use arm && insert='#f0:12345:respawn:/sbin/agetty 9600 ttyFB0 vt100'
use hppa && insert='b0:12345:respawn:/sbin/agetty 9600 ttyB0 vt100'
use s390 && insert='s0:12345:respawn:/sbin/agetty 38400 console'
if use ibm ; then
insert="${insert}#hvc0:2345:respawn:/sbin/agetty -L 9600 hvc0"$'\n'
insert="${insert}#hvsi:2345:respawn:/sbin/agetty -L 19200 hvsi0"
fi
(use arm || use mips || use sh || use sparc) && sed -i '/ttyS0/s:#::' inittab
if use kernel_FreeBSD ; then
sed -i \
-e 's/linux/cons25/g' \
-e 's/ttyS0/cuaa0/g' \
-e 's/ttyS1/cuaa1/g' \
inittab #121786
fi
[[ -n ${insert} ]] && echo "# Architecture specific features"$'\n'"${insert}" >> inittab
}
src_compile() {
use static && append-ldflags -static
emake -C src \
CC="$(tc-getCC)" \
all change_console \
|| die
}
src_install() {
emake -C src \
install \
ROOT="${D}" \
|| die "make install"
dodoc README doc/*
into /
dosbin src/change_console || die
doman src/change_console.8
insinto /etc
doins "${WORKDIR}"/inittab || die "inittab"
doinitd "${FILESDIR}"/{reboot,shutdown}.sh || die
}
pkg_postinst() {
# Reload init to fix unmounting problems of / on next reboot.
# This is really needed, as without the new version of init cause init
# not to quit properly on reboot, and causes a fsck of / on next reboot.
if [[ ${ROOT} == / ]] ; then
# Do not return an error if this fails
/sbin/telinit U &>/dev/null
fi
}
|