15e7247477
Changelog not available - this release appears to be a bug-fix release, AFAICT.
17 lines
357 B
Bash
17 lines
357 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: eclipse,v 1.2 2005/01/19 20:44:11 jschauma Exp $
|
|
#
|
|
# start the eclipse IDE
|
|
|
|
ECLIPSE_DIR=@PREFIX@/eclipse
|
|
|
|
case $1 in
|
|
-data) data=$2 ;;
|
|
-configuration) configuration=$2 ;;
|
|
esac
|
|
|
|
data=${data:-${HOME}}
|
|
configuration=${configuration:-${HOME}/.eclipse}
|
|
|
|
(cd ${ECLIPSE_DIR} && ./eclipse -data ${data} -configuration ${configuration} $@)
|