461f3c5adb
into separate ports. The OPTIONS will remain as of yet and trigger dependencies now, for easy transition. Update KOffice to version 1.3.2. Add patches to fix a number of issues, including: - fix kxkb on Xorg - fix kdemultimedia WITH_MPEGLIB (now mpeglib_artsplug) compilation on gcc 3.4.2 with optimizations greater than -O Add security related patches and entries to portaudit.txt.
16 lines
184 B
Bash
16 lines
184 B
Bash
#!/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
|