#!/bin/sh SVNREPO="https://nevada/svn/freebsd" SVNPATH="releng/sources/system-tools" SVNURL=${SVNREPO}/${SVNPATH} mkdir /tmp/touchscreen if [ -d /tmp/touchscreen ] ; then cd /tmp/touchscreen echo "trying to fetch driver binaries from subversion..." svn export ${SVNURL}/drv_utouch/trunk/utouch.ko \ /tmp/touchscreen/utouch.ko || exit 1 svn export ${SVNURL}/drv_xorg/xf86-input-utouch/trunk/src/.libs/utouch_drv.so \ /tmp/touchscreen/utouch_drv.so || exit 1 svn export ${SVNURL}/drv_xorg/xf86-input-utouch/trunk/xorg.conf \ /tmp/touchscreen/xorg.conf echo "driver binaries fetched" else echo "unable to create temporary working directory /tmp/touchscreen!" exit 1 fi