aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/qt4/qt-demo-init/qtdemo-init
blob: 8eb8771936fca0881cc59928d4ed2e8003a70581 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh

set -e

if [ -f /usr/bin/qtdemo ]; then
	QTDEMO=qtdemo
else
	QTDEMO="qtdemoE -qws"
fi

case "$1" in
  start)
	echo "Starting qtdemo"
	if [ -f /etc/profile.d/tslib.sh ]; then
		source /etc/profile.d/tslib.sh
	fi
	if [ -e $TSLIB_TSDEVICE ]; then
		if [ ! -f /etc/pointercal ]; then
			/usr/bin/ts_calibrate
		fi
		QWS_MOUSE_PROTO=tslib:$TSLIB_TSDEVICE $QTDEMO &
	else
		$QTDEMO &
	fi
	;;
  stop)
	echo "Stopping qtdemo"
	killall qtdemoE
	;;
  restart)
	$0 stop
	$0 start
	;;
  *)
	echo "usage: $0 { start | stop | restart }" >&2
	exit 1
	;;
esac

exit 0