freebsd-ports/mail/evolution/files/evolibs.sh
Joe Marcus Clarke eff18c67b3 * Add a startup script to load evolution's libraries needed for components
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
2005-03-16 05:17:35 +00:00

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