blob: 62cda4982c985e1bd1e44e63188d173593368a3b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.86.ebuild,v 1.12 2005/07/10 18:16:48 dostrow 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 bootstrap build ibm static"
RDEPEND="selinux? ( >=sys-libs/libselinux-1.18 sys-libs/libsepol )"
DEPEND="${RDEPEND}
virtual/os-headers"
src_unpack() {
unpack ${P}.tar.gz
cd "${S}"
epatch "${FILESDIR}"/${P}-docs.patch
epatch "${FILESDIR}"/${P}-shutdown-usage.patch
epatch "${DISTDIR}"/sysvinit-2.86-kexec.patch
cd src
epatch "${FILESDIR}"/${PV}-gentoo.patch
use selinux && epatch "${FILESDIR}"/${PV}-selinux.patch
cp "${FILESDIR}"/inittab "${WORKDIR}"/ || die "cp inittab"
if use ibm ; then
cat <<-EOF >> "${WORKDIR}"/inittab
#HVC / HVSI CONSOLE
#hvc0:12345:respawn:/sbin/agetty -L 9600 hvc0
#hvsi:12345:respawn:/sbin/agetty -L 19200 hvsi0
EOF
fi
}
src_compile() {
use static && append-ldflags -static
# Note: The LCRYPT define below overrides the test in
# sysvinit's Makefile. This is because sulogin must be linked
# to libcrypt in any case, but when building stage2 in
# catalyst, /usr/lib/libcrypt.a isn't available. In truth
# this doesn't change how sulogin is built since ld would use
# the shared obj by default anyway! The other option is to
# refrain from building sulogin, but that isn't a good option.
# (09 Jul 2004 agriffis)
emake -C src \
CC="$(tc-getCC)" \
DISTRO="Gentoo" \
LCRYPT="-lcrypt" \
|| die
}
src_install() {
dodoc README doc/*
cd src
make install DISTRO="Gentoo" ROOT="${D}" || die "make install"
insinto /etc
doins "${WORKDIR}"/inittab || die "inittab"
}
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} == / ]] && ! use build && ! use bootstrap; then
# Do not return an error if this fails
/sbin/init U &>/dev/null
fi
}
|