From f088eccccc1a55ee040c356e9fc288a03b94709f Mon Sep 17 00:00:00 2001 From: jschauma Date: Wed, 19 Mar 2003 16:09:29 +0000 Subject: Initial import of devel/eclipse: Eclipse is an open source software development project dedicated to providing a robust, full-featured, commercial-quality, industry platform for the development of highly integrated tools. It is composed of three projects, the Eclipse Project, the Eclipse Tools Project and the EclipseTechnology Project, each of which is overseen by a Project Management Committee (PMC) and governed by its Project Charter. Each project is composed of its own subprojects and is licensed under the CPL version 1.0. This package is a bit interesting in that it's a java application, which can be built on NetBSD using one of the sun-jdk's, but then gives runtime errors. However, installing the application built on a Linux machine under NetBSD will work just fine. Seems to work only with sun-jdk13. Thus I placed a build of eclipse from Linux in ftp, from where it can be installed using this package. --- devel/eclipse/files/eclipse | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 devel/eclipse/files/eclipse (limited to 'devel/eclipse/files') diff --git a/devel/eclipse/files/eclipse b/devel/eclipse/files/eclipse new file mode 100644 index 00000000000..b84015b57ef --- /dev/null +++ b/devel/eclipse/files/eclipse @@ -0,0 +1,15 @@ +#!/bin/sh +# +# $NetBSD: eclipse,v 1.1.1.1 2003/03/19 16:09:38 jschauma Exp $ +# +# start the eclipse IDE + +ECLIPSE_DIR=@PREFIX@/eclipse + +case $1 in + -data) data=$2 ;; +esac + +data=${data:-${HOME}} + +(cd ${ECLIPSE_DIR} && ./eclipse -data ${data} $@) -- cgit v1.2.3