mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
18 lines
388 B
Bash
18 lines
388 B
Bash
#!/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} --no-old --in ${KDMCONFDIR};
|
|
fi
|