a2d3b5a4bc
4.7.2. The official release notes can be found at: http://kde.org/announcements/announce-4.7.2.php This release ships with many improvements. Read more about them here: http://FreeBSD.kde.org/news.php#itemKDESC472availableinports We'd like to say thanks to all testers and contributors, especially to lwhsu@ for his effort on hosting our test packages. PR: 156293 [1] 159219 [2] 160164 [3] Submitted by: Oleg Sidorkin <osidorkin@gmail.com> [1] Alvaro Castillo <gobledb@gmail.com> [2] dkeav04@gmail.com [3] Tested by: exp-run via pav
23 lines
535 B
Bash
23 lines
535 B
Bash
#!/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
|