mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
dfcb8a3e1c
X.Org.
22 lines
520 B
Bash
22 lines
520 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != "POST-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
PKG_PREFIX=${PKG_PREFIX:=/usr/X11R6}
|
|
|
|
XDMCONFDIR=${PKG_PREFIX}/lib/X11/xdm
|
|
XDMCONFFILES="GiveConsole TakeConsole Xaccess Xresources Xservers Xsession \
|
|
Xsetup_0 Xwilling xdm-config"
|
|
for file in $XDMCONFFILES; do
|
|
if [ ! -f ${XDMCONFDIR}/$file ]; then
|
|
cp ${XDMCONFDIR}/$file.default ${XDMCONFDIR}/$file
|
|
fi
|
|
done
|
|
|
|
XINITCONFDIR=${PKG_PREFIX}/lib/X11/xinit
|
|
if [ ! -f ${XINITCONFDIR}/xinitrc ]; then
|
|
cp ${XINITCONFDIR}/xinitrc.default ${XINITCONFDIR}/xinitrc
|
|
fi
|