summaryrefslogtreecommitdiff
path: root/x11/kde4-runtime/files/kdm.sh
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kde4-runtime/files/kdm.sh')
-rw-r--r--x11/kde4-runtime/files/kdm.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/x11/kde4-runtime/files/kdm.sh b/x11/kde4-runtime/files/kdm.sh
new file mode 100644
index 000000000000..7f41b8a4f65d
--- /dev/null
+++ b/x11/kde4-runtime/files/kdm.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+#
+# $FreeBSD$
+
+# some defs
+GENKDMCONF=%%PREFIX%%/bin/genkdmconf
+KDMCONFDIR=%%PREFIX%%/share/config/kdm
+
+#first, set a path for an X app
+PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin
+export PATH
+
+#Configure kdm if needed
+if [ ! -r ${KDMCONFDIR}/kdmrc ]; then
+ echo "Generating KDM configuration";
+ ${GENKDMCONF} --in ${KDMCONFDIR};
+fi
+