Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

7
devel/eclipse/DESCR Normal file
View File

@@ -0,0 +1,7 @@
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.

View File

@@ -0,0 +1,16 @@
===========================================================================
$NetBSD: MESSAGE.Linux,v 1.1 2004/07/21 21:02:05 jschauma Exp $
Per default, eclipse stores data in your home directory unless you specify
the '-data' switch on the command line.
If you tell eclipse to store data in a directory located on an NFS share,
it is possible that eclipse will fail with an error message that it could
not aquire a lock. Apparently there are some issues with the way NFS is
done among Unix servers and Linux hosts. Make sure that lockd and statd
are running on both the client and the server.
If this does not work at all, then you can disable the use of a lock file
by starting eclipse using 'eclipse -vmargs -Dosgi.locking=none'.
===========================================================================

65
devel/eclipse/Makefile Normal file
View File

@@ -0,0 +1,65 @@
# $NetBSD: Makefile,v 1.30 2012/10/31 11:16:54 asau Exp $
#
DISTNAME= ${PKGNAME_NOREV}
PKGNAME= eclipse-${VERSION}
PKGREVISION= 2
CATEGORIES= devel java
MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/jschauma/
EXTRACT_SUFX= .zip
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.eclipse.org/
COMMENT= Java IDE
LICENSE= eclipse-license
DEPENDS+= apache-ant>=1.4.1:../../devel/apache-ant
USE_TOOLS+= unzip zip
PKG_JVMS_ACCEPTED= sun-jdk6 sun-jdk15 sun-jdk14
MAKE_ENV+= JAVA_HOME=${PKG_JAVA_HOME:Q}
MAKE_ENV+= ANT_HOME=${PREFIX:Q}
VERSION= 3.0.1
# XXX: Others might work but might need significant tweaking
ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-x86_64 Linux-*-*
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Linux"
DISTNAME= eclipse-sourceBuild-srcIncluded-${VERSION}
MASTER_SITES= ftp://download.eclipse.org/R-3.0.1-200409161125/
INSTALLATION_DIRS= bin
do-build:
cd ${WRKDIR} && ${MAKE_ENV} ${SH} build -os linux -ws motif -arch x86
.else
NO_BUILD= yes
CHECK_SHLIBS_SUPPORTED= no
do-extract:
${MKDIR} ${WRKDIR}/result
${CP} ${DISTDIR}/${PKGNAME_NOREV}${EXTRACT_SUFX} ${WRKDIR}/result/linux-motif-x86-sdk.zip
.endif
post-build:
${RM} -fr ${WRKDIR}/tmp
do-install:
cd ${DESTDIR}${PREFIX} && \
unzip ${WRKDIR}/result/linux-motif-x86-sdk.zip
${SED} -e "s,@PREFIX@,${PREFIX}," ${FILESDIR}/eclipse > \
${WRKDIR}/.eclipse
${INSTALL_SCRIPT} ${WRKDIR}/.eclipse ${DESTDIR}${PREFIX}/bin/eclipse
# This is not right, but for the time being it's the path of least
# resistance, since replacing it after install is problematic and
# replacing it before install is even more problematic. XXX.
#
CHECK_INTERPRETER_SKIP+=eclipse/plugins/org.apache.ant_1.6.2/bin/antRun.pl
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"

2838
devel/eclipse/PLIST Normal file

File diff suppressed because it is too large Load Diff

8
devel/eclipse/distinfo Normal file
View File

@@ -0,0 +1,8 @@
$NetBSD: distinfo,v 1.7 2005/10/20 18:38:29 wiz Exp $
SHA1 (eclipse-sourceBuild-srcIncluded-3.0.1.zip) = 2302ee6160be86466a6e7ef265fff0431bee72e3
RMD160 (eclipse-sourceBuild-srcIncluded-3.0.1.zip) = fba01eb0f019a888e9d9deb57ad7b284f218e783
Size (eclipse-sourceBuild-srcIncluded-3.0.1.zip) = 55618511 bytes
SHA1 (eclipse-3.0.1.zip) = be2fb3e3db81150e20797fd5e54e26880809fa60
RMD160 (eclipse-3.0.1.zip) = b554fe901461840cad33762b64f86b71f83c3580
Size (eclipse-3.0.1.zip) = 71851838 bytes

View File

@@ -0,0 +1,17 @@
#!/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} $@)