aboutsummaryrefslogtreecommitdiffstats
path: root/x11/kdebase4-runtime/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kdebase4-runtime/pkg-install')
-rw-r--r--x11/kdebase4-runtime/pkg-install16
1 files changed, 16 insertions, 0 deletions
diff --git a/x11/kdebase4-runtime/pkg-install b/x11/kdebase4-runtime/pkg-install
new file mode 100644
index 000000000000..c006125fb620
--- /dev/null
+++ b/x11/kdebase4-runtime/pkg-install
@@ -0,0 +1,16 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+if [ "$2" != "POST-INSTALL" ]; then
+ exit 0
+fi
+
+kdmrcscript=%%PREFIX%%/etc/rc.d/kdm.sh
+
+if [ -f $kdmrcscript ]; then
+ sh -c "$kdmrcscript"
+fi
+
+exit 0