aboutsummaryrefslogtreecommitdiff
path: root/x11/kdebase3/files/pkg-install.in
blob: fee72a16fe3cc20f140b40d4616471a0e06bf269 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# $FreeBSD$
#

if [ "$2" != "POST-INSTALL" ]; then
        exit 0
fi

boguscreatenewentry=%%PREFIX%%/share/templates/.keep_me
kdmrcscript=%%PREFIX%%/etc/rc.d/genkdmconf.sh

if [ -f $kdmrcscript ]; then
	sh -c "$kdmrcscript"
fi

if [ -f $boguscreatenewentry ]; then
	rm -f $boguscreatenewentry
fi

exit 0