default_install &&
# most drivers and applications reference X
PREFIX=/usr  &&
if [[ ${XSERVER_XORG} == 'true' ]];then
  TGT=${TRACK_ROOT}${PREFIX}/bin &&
  FROM=${INSTALL_ROOT}${PREFIX}/bin &&
  ln -vsf ${TGT}/Xorg ${FROM}/X &&
  if [[ ${XSERVER_SGID_INPUT} == 'true' ]]; then
    chown :input "${FROM}/Xorg"
    chmod g+s    "${FROM}/Xorg"
  fi &&
  if [[ ${XSERVER_SUID_ROOT} == 'true' ]]; then
    chmod u+s    "${FROM}/Xorg"
  fi
fi
