blob: 7890b5a22fdd9156fed3b832f42626ddd03ce04e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kde-env/kde-env-4.6.2.ebuild,v 1.2 2011/05/09 08:48:26 tomka Exp $
EAPI=3
CMAKE_REQUIRED="never"
KDE_REQUIRED="never"
inherit kde4-base
DESCRIPTION="Environment setting required for all KDE4 apps to run."
HOMEPAGE="http://kde.org"
[[ ${PV} = *9999* ]] && ESVN_REPO_URI="" || SRC_URI=""
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
LICENSE="as-is"
IUSE="aqua"
add_blocker kdelibs 4.2.2-r1 '<3.5.10-r3:3.5' 4.2.70:4.3
S=${WORKDIR}
src_unpack() {
:
}
src_prepare() {
:
}
src_install() {
if use kdeprefix; then
# List all the multilib libdirs
local _libdir _libdirs
for _libdir in $(get_all_libdirs); do
_libdirs+=":${EKDEDIR}/${_libdir}"
done
_libdirs=${_libdirs#:}
# number goes down with version
cat <<-EOF > 43kdepaths-${SLOT}
PATH="${EKDEDIR}/bin"
ROOTPATH="${EKDEDIR}/sbin:${EKDEDIR}/bin"
LDPATH="${_libdirs}"
MANPATH="${EKDEDIR}/share/man"
CONFIG_PROTECT="${KDEDIR}/share/config ${KDEDIR}/env ${KDEDIR}/shutdown /usr/share/config"
#KDE_IS_PRELINKED=1
PKG_CONFIG_PATH="${EKDEDIR}/$(get_libdir)/pkgconfig"
XDG_DATA_DIRS="${EKDEDIR}/share"
EOF
doenvd 43kdepaths-${SLOT}
cat <<-EOF > 50-kde-${SLOT}
SEARCH_DIRS="${EKDEDIR}/bin ${EKDEDIR}/lib*"
EOF
insinto /etc/revdep-rebuild
doins 50-kde-${SLOT}
# kdeglobals needed to make third party apps installed in /usr work
cat <<-EOF > kdeglobals
[Directories][\$i]
prefixes=${EPREFIX}/usr
EOF
insinto ${KDEDIR}/share/config
doins kdeglobals
KDE_X="KDE-${SLOT}"
else
# Much simpler for the FHS compliant -kdeprefix install
# number goes down with version
cat <<-EOF > 43kdepaths
CONFIG_PROTECT="/usr/share/config"
#KDE_IS_PRELINKED=1
EOF
doenvd 43kdepaths
KDE_X="KDE-4"
fi
# Properly place xinitrc.d file that exports XDG_MENU_PREFIX to env
cat <<EOF > 11-xdg-menu-kde-${SLOT}
#!/bin/sh
if [ -z \${XDG_MENU_PREFIX} ] && [ "\${DESKTOP_SESSION}" = "${KDE_X}" ]; then
export XDG_MENU_PREFIX="kde-${SLOT}-"
fi
EOF
exeinto /etc/X11/xinit/xinitrc.d/
doexe 11-xdg-menu-kde-${SLOT} || die "doexe failed"
}
pkg_preinst() {
:
}
src_test() {
:
}
|