ports/emulators/wine-devel/files/wine.sh
Dmitry Sivachenko 42eedefcd2 Install a script into etc/rc.d/ to run ldconfig after reboots so
Wine libraries could be found.

Approved by:	maintainer
2003-05-19 10:07:37 +00:00

15 lines
180 B
Bash

#!/bin/sh
case "$1" in
start)
/sbin/ldconfig -m %%PREFIX%%/lib/wine
;;
stop)
;;
*)
echo ""
echo "Usage: `basename $0` { start | stop }"
echo ""
exit 64
;;
esac