blob: 2a66ee3a0324e359dd5ca557ce5cddfb998e8265 (
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
94
95
96
97
98
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
TRINITY_MODULE_NAME="kdebase"
inherit trinity-meta
DESCRIPTION="starttde script, which starts a complete Trinity session, and associated scripts"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="x11-apps/xmessage
x11-apps/xsetroot
x11-apps/xset
x11-apps/xrandr
x11-apps/mkfontdir
x11-apps/xprop
>=trinity-base/kdesktop-${PV}:${SLOT}
>=trinity-base/kcminit-${PV}:${SLOT}
>=trinity-base/ksmserver-${PV}:${SLOT}
>=trinity-base/kwin-${PV}:${SLOT}
>=trinity-base/kpersonalizer-${PV}:${SLOT}
>=trinity-base/kreadconfig-${PV}:${SLOT}
>=trinity-base/ksplashml-${PV}:${SLOT}"
TSM_EXTRACT="startkde README.pam INSTALL AUTHORS COPYING COPYING-DOCS kdm"
src_prepare() {
epatch "${FILESDIR}/kdebase-startkde-${PV}-gentoo.patch"
trinity-base_src_prepare
}
src_configure() {
echo -n "";
}
src_compile() {
# Patch the starttde script to setup the environment for KDE 4.0
# Add our TDEDIR
sed -e "s#@REPLACE_PREFIX@#${TDEDIR}#" \
"${S}/startkde" >"${S}/starttde" || die "Sed for PREFIX failed."
# List all the multilib libdirs
local _libdir _libdirs
for _libdir in $(get_all_libdirs); do
_libdirs="${_libdirs}:${PREFIX}/${_libdir}"
done
_libdirs=${_libdirs#:}
# Complete LDPATH
sed -i -e "s#@REPLACE_LIBS@#${_libdirs}#" \
"${S}/starttde" || die "Sed for LDPATH failed."
}
src_install() {
# starttde script
exeinto "${TDEDIR}/bin"
doexe starttde
# startup and shutdown scripts
exeinto "${TDEDIR}/env"
doexe "${FILESDIR}/agent-startup.sh"
exeinto "${TDEDIR}/shutdown"
doexe "${FILESDIR}/agent-shutdown.sh"
# freedesktop environment variables
cat <<EOF > "${T}/xdg.sh"
export XDG_CONFIG_DIRS="${TDEDIR}/etc/xdg"
EOF
exeinto "${TDEDIR}/env"
doexe "${T}/xdg.sh"
# x11 session script
cat <<EOF > "${T}/tde-${SLOT}"
#!/bin/sh
exec ${TDEDIR}/bin/starttde
EOF
exeinto /etc/X11/Sessions
doexe "${T}/tde-${SLOT}" # FIXME: change script branding to trinity
# (not really) freedesktop compliant session script
sed -e "s:@TDE_BINDIR@:${TDEDIR}/bin:g;s:Name=Trinity:Name=Trinity ${SLOT}:" \
-e "s/startkde/starttde/" \
"${S}/kdm/kfrontend/sessions/tde.desktop.in" > "${T}/tde-${SLOT}.desktop"
insinto /usr/share/xsessions
doins "${T}/tde-${SLOT}.desktop"
}
pkg_postinst () {
echo
elog "To enable gpg-agent and/or ssh-agent in Trinity sessions,"
elog "edit ${TDEDIR}/env/agent-startup.sh and"
elog "${TDEDIR}/shutdown/agent-shutdown.sh"
echo
}
|