freebsd-ports/x11/kde4-workspace/pkg-install

16 lines
191 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
if [ "$2" != "POST-INSTALL" ]; then
exit 0
fi
kdmrcscript=%%PREFIX%%/etc/rc.d/genkdmconf.sh
if [ -f $kdmrcscript ]; then
sh -c "$kdmrcscript"
fi
exit 0