such as the ximian-connector * Fully-qualify the path to update-desktop-database in the plist since /usr/local/bin isn't in pkg_add's PATH
15 lines
214 B
Bash
15 lines
214 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
start)
|
|
/sbin/ldconfig -m %%PREFIX%%/lib/evolution/%%EVO_VERSION%%
|
|
;;
|
|
stop)
|
|
;;
|
|
*)
|
|
echo ""
|
|
echo "Usage: `basename $0` { start | stop }"
|
|
echo ""
|
|
exit 64
|
|
;;
|
|
esac
|