pkgsrc/devel/eclipse/files/eclipse
jschauma 15e7247477 Update to 3.0.1.
Changelog not available - this release appears to be a bug-fix release,
AFAICT.
2005-01-19 20:44:11 +00:00

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} $@)