summaryrefslogtreecommitdiff
path: root/misc/kde4-xdg-env/files/xdg-env.sh.in
blob: 09a1c63e398f797b137d908a4067cd3291147476 (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
#!/bin/sh

# $FreeBSD$
#
# Submit missing XDG-file locations to kde@freebsd.org!

XDG_CONFIG_DIRS=\
${XDG_CONFIG_DIRS}:/etc/xdg:%%LOCALBASE%%/etc/xdg:%%LOCALBASE%%/etc/xdg/xfce4

if [ %%KDE4_PREFIX%% != %%LOCALBASE%% ]; then
    XDG_CONFIG_DIRS=%%KDE4_PREFIX%%/etc/xdg:${XDG_CONFIG_DIRS}
fi

export XDG_CONFIG_DIRS

XDG_DATA_DIRS=\
${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome

if [ %%KDE4_PREFIX%% != %%LOCALBASE%% ]; then
    XDG_DATA_DIRS=%%KDE4_PREFIX%%/share:${XDG_DATA_DIRS}
fi

export XDG_DATA_DIRS

kbuildsycoca4