blob: 06d8808a505bcab6e561ce10eede1d5e416911ae (
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
|
# Copyright 1999-2022 Gentoo Authors
# Copyright 2022 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
TRINITY_MODULE_NAME="tdebase"
TRINITY_MODULE_TYPE="core"
TSM_EXTRACT="starttde README.pam INSTALL AUTHORS COPYING COPYING-DOCS tdm r14-xdg-update migratekde3"
inherit trinity-meta-2
DESCRIPTION="Starttde script, which starts a complete Trinity session, and associated scripts"
if [[ ${PV} != *9999* ]] ; then
KEYWORDS="~amd64 ~arm64 ~x86"
fi
RDEPEND="x11-apps/xmessage
x11-apps/xsetroot
x11-apps/xset
x11-apps/xrandr
x11-apps/mkfontscale
x11-apps/xprop
~trinity-base/kdesktop-${PV}
~trinity-base/kcminit-${PV}
~trinity-base/ksmserver-${PV}
~trinity-base/twin-${PV}
~trinity-base/kpersonalizer-${PV}
~trinity-base/kreadconfig-${PV}
~trinity-base/ksplashml-${PV}
~trinity-base/tdeinit-${PV}"
src_prepare() {
trinity-base-2_src_prepare
}
src_configure() {
echo -n "";
}
src_compile() {
# List all the multilib libdirs
local _libdir _libdirs
for _libdir in $(get_all_libdirs); do
_libdirs="${_libdirs}:${TDEDIR}/${_libdir}"
done
_libdirs=${_libdirs#:}
}
src_install() {
# starttde script
exeinto "${TDEDIR}/bin"
doexe starttde
doexe r14-xdg-update
doexe migratekde3
# startup and shutdown scripts
exeinto "${TDEDIR}/env"
doexe "${FILESDIR}/agent-startup.sh"
exeinto "${TDEDIR}/shutdown"
doexe "${FILESDIR}/agent-shutdown.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}:" \
"${S}/tdm/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
}
|