summaryrefslogtreecommitdiff
path: root/app-misc/kogaion-version/kogaion-version-1.2.ebuild
blob: c44f7273b8e31240c7992cda43faf9faaab0de07 (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
# Copyright 2004-2011 Sabayon Linux
# Copyright 2014 Kogaion Linux
# Original Authors Sabayon Team
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4

inherit multilib

DESCRIPTION="Kogaion System Release virtual package"
HOMEPAGE="http://rogentos.ro/"
SRC_URI=""

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"

IUSE=""
DEPEND=""
GCC_VER="4.7"
PYTHON_VER="2.7"
# Listing default packages for the current release
RDEPEND="app-admin/eselect-python
	dev-lang/python:${PYTHON_VER}
	sys-apps/systemd
	!sys-apps/hal
	!sys-auth/consolekit
	sys-devel/base-gcc:${GCC_VER}
	sys-devel/gcc-config
	!app-misc/sabayon-version"

src_unpack () {
	echo "Kogaion Linux ${ARCH} ${PV}" > "${T}/rogentos-release"
	mkdir -p "${S}" || die
}

src_install () {
	insinto /etc
	doins "${T}"/rogentos-release
	cp "${T}"/rogentos-release "${T}"/kogaion-version || die
	doins "${T}"/kogaion-release
	dosym /etc/rogentos-release /etc/system-release
	dosym /etc/kogaion-release /etc/system-release
	# Bug 3459 - reduce the risk of fork bombs
	insinto /etc/security/limits.d
	doins "${FILESDIR}/00-sabayon-anti-fork-bomb.conf"
}

pkg_postinst() {
	# Setup Python ${PYTHON_VER}
	eselect python set python${PYTHON_VER}
	# No need to set the GCC profile here, since it's done in base-gcc

	# Improve systemd support
	if [[ ! -L /etc/mtab ]] && [[ -e /proc/self/mounts ]]; then
		rm -f /etc/mtab
		einfo "Migrating /etc/mtab to a /proc/self/mounts symlink"
		ln -sf /proc/self/mounts /etc/mtab
	fi

	# force kdm back to the default runlevel if added to boot
	# this is in preparation for the logind migration
	local xdm_conf="${ROOT}/etc/conf.d/xdm"
	local xdm_boot_runlevel="${ROOT}/etc/runlevels/boot/xdm"
	local xdm_default_runlevel="${ROOT}/etc/runlevels/default/xdm"
	if [ -e "${xdm_conf}" ] && [ -e "${xdm_boot_runlevel}" ]; then
		DISPLAYMANAGER=""
		. "${xdm_conf}"
		if [ "${DISPLAYMANAGER}" = "kdm" ]; then
			elog "Moving xdm (kdm) from boot runlevel to default"
			elog "or logind will not work as expected"
			mv -f "${xdm_boot_runlevel}" "${xdm_default_runlevel}"
		fi
	fi

	# remove old hal udev rules.d file, if found. sys-apps/hal is long gone.
	rm -f "${ROOT}/lib/udev/rules.d/90-hal.rules"
}