diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-07-31 05:26:16 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2005-07-31 05:26:16 +0000 |
commit | 0be0fb477cb7000852c24a6cf6bba1c9bf3abd7e (patch) | |
tree | 834412cc77705b06f4e05945ec6ff3dc38d1bf6e /java/eclipse | |
parent | 2627c74b7e6eb6066a1221a155add52cb630affa (diff) | |
download | ports-0be0fb477cb7000852c24a6cf6bba1c9bf3abd7e.tar.gz ports-0be0fb477cb7000852c24a6cf6bba1c9bf3abd7e.zip |
Notes
Diffstat (limited to 'java/eclipse')
58 files changed, 1084 insertions, 5359 deletions
diff --git a/java/eclipse/Makefile b/java/eclipse/Makefile index f2612ba87082..48ef5132be57 100644 --- a/java/eclipse/Makefile +++ b/java/eclipse/Makefile @@ -6,11 +6,11 @@ # PORTNAME= eclipse -PORTVERSION= 3.0.1 -PORTREVISION= 4 +PORTVERSION= 3.1 +PORTREVISION= 0 CATEGORIES= java devel MASTER_SITES= ${MASTER_SITE_ECLIPSE} -MASTER_SITE_SUBDIR= R-${PORTVERSION}-200409161125 +MASTER_SITE_SUBDIR= R-${PORTVERSION}-200506271435 DISTNAME= ${PORTNAME}-sourceBuild-srcIncluded-${PORTVERSION} DIST_SUBDIR= eclipse @@ -21,7 +21,7 @@ BUILD_DEPENDS= ant:${PORTSDIR}/devel/apache-ant \ zip:${PORTSDIR}/archivers/zip BUILD_DEPENDS+= ${EXTRACT_DEPENDS} -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= i386 amd64 USE_GMAKE= yes USE_ZIP= yes USE_GCC= 3.4 @@ -32,61 +32,101 @@ JAVA_OS= native USE_REINPLACE= yes NO_WRKSUBDIR= yes -PLIST_SUB= BUILD=${ECLIPSE_BUILD} WS=${ECLIPSE_WS} RELEASEVERSION=${PORTVERSION} -ECLIPSE_BUILD= 3063 +PORTDESTDIR= ${PREFIX}/eclipse + ECLIPSE_OS= freebsd -ECLIPSE_ARCH= x86 .if defined(WITH_MOTIF) ECLIPSE_WS= motif USE_ICONV= yes USE_MOTIF= yes -PLIST_SUB+= GTK:="@comment " -PLIST_SUB+= MOTIF:="" .else ECLIPSE_WS= gtk -PLIST_SUB+= GTK:="" -PLIST_SUB+= MOTIF:="@comment " +.if !defined(WITHOUT_MOZILLA) .if defined(WITH_MOZILLA) BROWSER= ${WITH_MOZILLA} +MAKE_MOZILLA= make_mozilla BUILD_DEPENDS+= ${BROWSER}:${PORTSDIR}/www/${BROWSER} .else BUILD_DEPENDS+= mozilla:${PORTSDIR}/www/mozilla BROWSER= mozilla .endif +.else +BROWSER= +MAKE_MOZILLA= +.endif +.if defined(WITHOUT_CAIRO) +MAKE_CAIRO= +.else +LIB_DEPENDS= cairo.1:${PORTSDIR}/graphics/cairo +MAKE_CAIRO= make_cairo +.endif .endif .if defined(WITHOUT_GNOMEVFS) MAKE_GNOME= USE_GNOME= gtk20 pkgconfig -PLIST_SUB+= GNOME:="@comment " .else MAKE_GNOME= make_gnome USE_GNOME= gtk20 gnomevfs2 libgnome libgnomeui pkgconfig -PLIST_SUB+= GNOME:="" .endif -MAKE_ARGS= BROWSER=${BROWSER} \ - ECLIPSE_BUILD=${ECLIPSE_BUILD} \ +.include <bsd.port.pre.mk> + +.if (${ARCH} == "amd64") +ECLIPSE_ARCH= amd64 +ECLIPSE_SWT= gtk64 +.else +ECLIPSE_ARCH= x86 +ECLIPSE_SWT= gtk +.endif + +MAKE_ENV+= BROWSER=${BROWSER} \ ECLIPSE_ARCH=${ECLIPSE_ARCH} \ ECLIPSE_OS=${ECLIPSE_OS} \ ECLIPSE_WS=${ECLIPSE_WS} \ JAVA_HOME=${JAVA_HOME} \ - MAKE_GNOME=${MAKE_GNOME} + MAKE_GNOME=${MAKE_GNOME} \ + MAKE_MOZILLA=${MAKE_MOZILLA} \ + MAKE_CAIRO=${MAKE_CAIRO} \ + MOTIF_HOME=${X11_HOME} -SCRIPTS_ENV= ECLIPSE_WS="${ECLIPSE_WS}" +PLIST_FILES= bin/eclipse -.include <bsd.port.pre.mk> +SWTGTK=${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library +SWTMOTIF=${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT PI/motif/library -# The Motif version builds a KDE/Qt library if kdebase is around -.if defined(WITH_MOTIF) -BUILD_KDE=`${PKG_INFO} -xc kdebase | ${GREP} "no packages match"` -.if empty(BUILD_KDE) -PLIST_SUB+= KDE:="" -.else -PLIST_SUB+= KDE:="@comment *${BUILD_KDE}*" -.endif -.endif +# Manually patch some files with spaces in the path +post-patch: + @${PATCH} ${PATCH_DIST_ARGS} "${SWTMOTIF}/build.sh" \ + ${FILESDIR}/manualpatch-plugins-swt-motif-build.sh + @${PATCH} ${PATCH_DIST_ARGS} "${SWTMOTIF}/make_freebsd.mak" \ + ${FILESDIR}/manualpatch-plugins-swt-motif-make_freebsd.mak + @${PATCH} ${PATCH_DIST_ARGS} "${SWTGTK}/make_freebsd.mak" \ + ${FILESDIR}/manualpatch-plugins-swt-gtk-make_freebsd.mak + @${PATCH} ${PATCH_DIST_ARGS} "${SWTGTK}/build.sh" \ + ${FILESDIR}/manualpatch-plugins-swt-gtk-build.sh + @${PATCH} ${PATCH_DIST_ARGS} "${SWTGTK}/os_custom.h" \ + ${FILESDIR}/manualpatch-plugins-swt-gtk-os_custom.h + +do-build: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} \ + ./build -os ${ECLIPSE_OS} -ws ${ECLIPSE_WS} -arch ${ECLIPSE_ARCH} -compilelibs) + +do-install: + @${MKDIR} ${PORTDESTDIR} + @${TAR} -xzf ${WRKSRC}/result/*.tar.gz -C ${PREFIX} + @${SED} \ + -e "s+%%ECLIPSE_HOME%%+${PORTDESTDIR}+g" \ + -e "s+%%JAVA_HOME%%+${JAVA_HOME}+g" \ + -e "s+%%X11BASE%%+${X11BASE}+g" \ + -e "s+%%BROWSER%%+${BROWSER}+g" \ + ${FILESDIR}/eclipse.in > ${WRKSRC}/eclipse.tmp + ${INSTALL_SCRIPT} ${WRKSRC}/eclipse.tmp ${PREFIX}/bin/eclipse + ${INSTALL_PROGRAM} ${WRKSRC}/launchertmp/eclipse ${PREFIX}/eclipse/eclipse + @(cd ${WRKSRC}; ${FIND} -s eclipse -not -type d) >> ${TMPPLIST} + @(cd ${WRKSRC}; ${FIND} -s -d eclipse -type d) \ + | ${SED} -ne 's,^,@dirrm ,p' >> ${TMPPLIST} .include <bsd.port.post.mk> diff --git a/java/eclipse/distinfo b/java/eclipse/distinfo index f6cfc6c1af90..fa7bd6999edf 100644 --- a/java/eclipse/distinfo +++ b/java/eclipse/distinfo @@ -1,2 +1,2 @@ -MD5 (eclipse/eclipse-sourceBuild-srcIncluded-3.0.1.zip) = c95561df899a47fc05261531ed0b9221 -SIZE (eclipse/eclipse-sourceBuild-srcIncluded-3.0.1.zip) = 55618511 +MD5 (eclipse/eclipse-sourceBuild-srcIncluded-3.1.zip) = 19ad65d52005da5eaa1d3687b3a50de2 +SIZE (eclipse/eclipse-sourceBuild-srcIncluded-3.1.zip) = 66241870 diff --git a/java/eclipse/files/Makefile b/java/eclipse/files/Makefile deleted file mode 100644 index 95cd54717e5f..000000000000 --- a/java/eclipse/files/Makefile +++ /dev/null @@ -1,87 +0,0 @@ -# $FreeBSD$ - -ECHO= /bin/echo -FIND= /usr/bin/find -MKDIR= /bin/mkdir -p -SED= /usr/bin/sed -CP= /bin/cp -CSH= /bin/csh -SH= /bin/sh -GMAKE= $(LOCALBASE)/bin/gmake -ANT= $(LOCALBASE)/bin/ant -UNZIP_CMD= $(LOCALBASE)/bin/unzip - -PORTDESTDIR= $(PREFIX)/eclipse - -CFLAGS+= -I$(JAVA_HOME)/include \ - -I$(JAVA_HOME)/include/bsd \ - -I$(JAVA_HOME)/include/freebsd - -LIBUPDATE= libupdate.so -LIBUPDATE_DST= plugins/org.eclipse.update.core.freebsd/os/freebsd/x86 -LIBUPDATE_SRC= plugins/org.eclipse.update.core.freebsd/src - -SWT_VERSION= $(ECLIPSE_BUILD) -LIBSWT= libswt-$(ECLIPSE_WS)-$(SWT_VERSION).so -LIBSWTPI= libswt-pi-$(ECLIPSE_WS)-$(SWT_VERSION).so -LIBSWT_DST= plugins/org.eclipse.swt.$(ECLIPSE_WS)/os/freebsd/x86 -LIBSWT_SRC= plugins/org.eclipse.swt/Eclipse_SWT - -LAUNCHER= eclipse -LAUNCHER_DST= plugins/platform-launcher/bin/freebsd/$(ECLIPSE_WS) -LAUNCHER_SRC= plugins/platform-launcher/library/$(ECLIPSE_WS) - -LAUNCHER_SRCS= $(LAUNCHER_SRC)/../eclipse.c \ - $(LAUNCHER_SRC)/../eclipseUtil.c \ - $(LAUNCHER_SRC)/../eclipseShm.c \ - $(LAUNCHER_SRC)/eclipseGtk.c -LAUNCHER_OBJS= $(LAUNCHER_SRCS:S/.c/.o/g) - -all: binaries java - -binaries: libswt launcher libupdate - -libswt: - @$(ECHO) "===> Building libswt." - cd "plugins/org.eclipse.swt/Eclipse SWT PI/$(ECLIPSE_WS)/library" && \ - $(SH) ./build.sh && \ - $(CP) *.so ../../../../org.eclipse.swt.$(ECLIPSE_WS)/os/freebsd/x86/ - -launcher: - @$(ECHO) "===> Building Eclipse launcher." - cd plugins/platform-launcher/library/$(ECLIPSE_WS) && \ - $(CSH) build.csh -os freebsd && \ - $(CP) eclipse ../../bin/freebsd/$(ECLIPSE_WS)/eclipse - -libupdate: - @$(ECHO) "===> Building libupdate." - cd plugins/org.eclipse.update.core.freebsd/src && \ - $(ANT) -Djava.home=$(JAVA_HOME) -DCC=$(CC) - @$(ECHO) "===> Building libcore." - cd plugins/org.eclipse.core.resources.freebsd/src && \ - env JDK_INCLUDE="$(JAVA_HOME)/include -I$(JAVA_HOME)/include/freebsd" $(GMAKE) && \ - $(CP) *.so ../../org.eclipse.core.resources.freebsd/os/freebsd/x86 - -java: build-install - -build-install: - @$(ECHO) "===> Building Eclipse platform." - ./build -os $(ECLIPSE_OS) -ws $(ECLIPSE_WS) -arch $(ECLIPSE_ARCH) - -install: - @$(ECHO) "===> Installing Eclipse platform." - @$(MKDIR) $(PORTDESTDIR) - $(UNZIP_CMD) result/$(ECLIPSE_OS)-$(ECLIPSE_WS)-$(ECLIPSE_ARCH)-sdk.zip -d $(PREFIX) - @$(ECHO) "===> Installing a shell script..." - @$(SED) \ - -e "s+%%ECLIPSE_HOME%%+$(PORTDESTDIR)+g" \ - -e "s+%%JAVA_HOME%%+$(JAVA_HOME)+g" \ - eclipse.in > eclipse.tmp - $(BSD_INSTALL_SCRIPT) eclipse.tmp $(PREFIX)/bin/eclipse - -clean: - ./build -os $(ECLIPSE_OS) -ws $(ECLIPSE_WS) -arch $(ECLIPSE_ARCH) clean - rm -rf $(LIBSWT_DST)/$(LIBSWTPI) $(LIBSWT_DST)/$(LIBSWT) - rm -rf $(LAUNCHER_DST)/$(LAUNCHER) - rm -rf $(LIBSWT_SRC)/*.o $(LAUNCHER_OBJS) - rm -rf $(LIBUPDATE_DST)/$(LIBUPDATE) diff --git a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml b/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml deleted file mode 100644 index fae9108eaf4f..000000000000 --- a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml +++ /dev/null @@ -1,319 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project name="Assemble org.eclipse.sdk" default="main"> - <property name="archiveName" value="org.eclipse.sdk-${buildId}-freebsd.gtk.x86.zip"/> - <property name="os" value="freebsd"/> - <property name="ws" value="gtk"/> - <property name="arch" value="x86"/> - <property name="assemblyTempDir" value="${buildDirectory}/tmp"/> - <property name="eclipse.base" value="${assemblyTempDir}/${collectingFolder}"/> - <property name="eclipse.plugins" value="${eclipse.base}/plugins"/> - <property name="eclipse.features" value="${eclipse.base}/features"/> - <property name="archiveFullPath" value="${basedir}/${buildLabel}/${archiveName}"/> - <!-- Beginning of the jarUp task --> - <target name="jarUp" description="Create a jar from the given location."> - <available property="${source}/${elementName}_exists" file="${source}/${elementName}"/> - <antcall target="jarIng"> - <param name="source" value="${source}"/> - <param name="elementName" value="${elementName}"/> - </antcall> - </target> - <target name="jarIng" if="${source}/${elementName}_exists"> - <zip zipfile="${source}/${elementName}.jar" basedir="${source}/${elementName}" filesonly="false" whenempty="skip" update="false"/> - <delete dir="${source}/${elementName}"/> - </target> - <!-- End of the jarUp task --> - <target name="main"> - <condition property="pluginArchivePrefix" value="plugins"> - <equals arg1="${archivePrefix}" arg2="" trim="true"/> - </condition> - <property name="pluginArchivePrefix" value="${archivePrefix}/plugins"/> - - <condition property="featureArchivePrefix" value="features"> - <equals arg1="${archivePrefix}" arg2="" trim="true"/> - </condition> - <property name="featureArchivePrefix" value="${archivePrefix}/features"/> - - <delete dir="${assemblyTempDir}"/> - <dirname property="archiveParentFolder" file="${archiveFullPath}"/> - <mkdir dir="${archiveParentFolder}"/> - <mkdir dir="${assemblyTempDir}"/> - <mkdir dir="${buildLabel}"/> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.doc.isv" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.scheduler" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ltk.ui.refactoring" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.doc.user" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.osgi" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.debug.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.intro" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.source" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.junit" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.base" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.osgi.services" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.boot" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.sdk" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.swt.gtk" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.filebuffers" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.apache.lucene" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.workbench" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.runtime.compatibility" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ant.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ant.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.views" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.source" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.doc.user" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.junit.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.expressions" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.source" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.ide" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.externaltools" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ltk.core.refactoring" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.ide" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.ssh" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jface.text" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.compare" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.doc.user" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jface" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.junit" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.resources.freebsd" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.debug.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.resources" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.doc.isv" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.webapp" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.appserver" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.ssh2" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.junit.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.variables" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.search" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.debug" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.console" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.core.freebsd" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.presentations.r21" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.text" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.tomcat" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.launching" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.swt" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.build" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.editors" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.debug.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.osgi.util" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.apache.ant" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.source.freebsd.gtk.x86" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.workbench.texteditor" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.cheatsheets" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.workbench.compatibility" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.configurator" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.forms" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.jdt.source/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.platform.source/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.sdk/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.jdt/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.pde/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.platform/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - - <!-- This shouldn't be changed ever --> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${featureArchivePrefix}"/> - <arg line="${pluginArchivePrefix}"/> - </exec> - <exec executable="zip" dir="${eclipse.base}/freebsd.gtk.x86"> - <arg line="-r -q ${zipargs} ${archiveFullPath} . "/> - </exec> - </target> -</project> diff --git a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml b/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml deleted file mode 100644 index 643f346be719..000000000000 --- a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml +++ /dev/null @@ -1,319 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project name="Assemble org.eclipse.sdk" default="main"> - <property name="archiveName" value="org.eclipse.sdk-${buildId}-freebsd.motif.x86.zip"/> - <property name="os" value="freebsd"/> - <property name="ws" value="motif"/> - <property name="arch" value="x86"/> - <property name="assemblyTempDir" value="${buildDirectory}/tmp"/> - <property name="eclipse.base" value="${assemblyTempDir}/${collectingFolder}"/> - <property name="eclipse.plugins" value="${eclipse.base}/plugins"/> - <property name="eclipse.features" value="${eclipse.base}/features"/> - <property name="archiveFullPath" value="${basedir}/${buildLabel}/${archiveName}"/> - <!-- Beginning of the jarUp task --> - <target name="jarUp" description="Create a jar from the given location."> - <available property="${source}/${elementName}_exists" file="${source}/${elementName}"/> - <antcall target="jarIng"> - <param name="source" value="${source}"/> - <param name="elementName" value="${elementName}"/> - </antcall> - </target> - <target name="jarIng" if="${source}/${elementName}_exists"> - <zip zipfile="${source}/${elementName}.jar" basedir="${source}/${elementName}" filesonly="false" whenempty="skip" update="false"/> - <delete dir="${source}/${elementName}"/> - </target> - <!-- End of the jarUp task --> - <target name="main"> - <condition property="pluginArchivePrefix" value="plugins"> - <equals arg1="${archivePrefix}" arg2="" trim="true"/> - </condition> - <property name="pluginArchivePrefix" value="${archivePrefix}/plugins"/> - - <condition property="featureArchivePrefix" value="features"> - <equals arg1="${archivePrefix}" arg2="" trim="true"/> - </condition> - <property name="featureArchivePrefix" value="${archivePrefix}/features"/> - - <delete dir="${assemblyTempDir}"/> - <dirname property="archiveParentFolder" file="${archiveFullPath}"/> - <mkdir dir="${archiveParentFolder}"/> - <mkdir dir="${assemblyTempDir}"/> - <mkdir dir="${buildLabel}"/> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.doc.isv" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.scheduler" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ltk.ui.refactoring" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.doc.user" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.osgi" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.debug.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.intro" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.source" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.junit" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.base" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.osgi.services" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.boot" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.sdk" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.filebuffers" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.apache.lucene" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.workbench" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.runtime.compatibility" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ant.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ant.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.views" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.source" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.doc.user" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.junit.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.expressions" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.source" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.ide" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.externaltools" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ltk.core.refactoring" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform.source.freebsd.motif.x86" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.ide" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.ssh" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jface.text" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.compare" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.doc.user" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jface" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.junit" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.resources.freebsd" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.debug.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.resources" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.doc.isv" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.webapp" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.appserver" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.ssh2" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.junit.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.help.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.core.variables" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.search" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.debug" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.console" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.core.freebsd" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.presentations.r21" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.text" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.platform" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.tomcat" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.launching" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.cvs.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.swt" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.build" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.editors" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.jdt.debug.ui" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.osgi.util" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.apache.ant" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.runtime" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.team.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.workbench.texteditor" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.cheatsheets" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.pde.core" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.swt.motif" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.workbench.compatibility" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.update.configurator" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="plugins/org.eclipse.ui.forms" target="gather.bin.parts"> - <property name="destination.temp.folder" value="${eclipse.plugins}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.jdt.source/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.platform.source/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.sdk/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.jdt/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.pde/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - <ant antfile="build.xml" dir="features/org.eclipse.platform/" target="gather.bin.parts"> - <property name="feature.base" value="${eclipse.base}"/> - </ant> - - <!-- This shouldn't be changed ever --> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${featureArchivePrefix}"/> - <arg line="${pluginArchivePrefix}"/> - </exec> - <exec executable="zip" dir="${eclipse.base}/freebsd.motif.x86"> - <arg line="-r -q ${zipargs} ${archiveFullPath} . "/> - </exec> - </target> -</project> diff --git a/java/eclipse/files/build.sh b/java/eclipse/files/build.sh deleted file mode 100644 index f7cd9949b332..000000000000 --- a/java/eclipse/files/build.sh +++ /dev/null @@ -1,16 +0,0 @@ -#******************************************************************************* -# Copyright (c) 2000, 2004 IBM Corporation and others. -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Common Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/cpl-v10.html -# -# Contributors: -# IBM Corporation - initial API and implementation -# Kevin Cornell (Rational Software Corporation) -# Tom Tromey (Red Hat, Inc.) -#******************************************************************************* - -#!/bin/sh - -gmake -f make_gtk.mak ${1} ${2} ${3} ${4} diff --git a/java/eclipse/files/eclipse.in b/java/eclipse/files/eclipse.in index 22f720a96710..1edf7be3bdbb 100644 --- a/java/eclipse/files/eclipse.in +++ b/java/eclipse/files/eclipse.in @@ -10,6 +10,8 @@ DEFAULT_JAVA_HOME=%%JAVA_HOME%% ECLIPSE_HOME=%%ECLIPSE_HOME%% DEFAULT_JAVA_CMD=java +MOZILLA_FIVE_HOME=%%X11BASE%%/lib/%%BROWSER%% +LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH #----------------------------------------------------------------------------- diff --git a/java/eclipse/files/make_freebsd.mak b/java/eclipse/files/make_freebsd.mak deleted file mode 100644 index e2eeeb8fbefa..000000000000 --- a/java/eclipse/files/make_freebsd.mak +++ /dev/null @@ -1,121 +0,0 @@ -#******************************************************************************* -# Copyright (c) 2000, 2004 IBM Corporation and others. -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Common Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/cpl-v10.html -# -# Contributors: -# IBM Corporation - initial API and implementation -#******************************************************************************* - -# Makefile for creating SWT libraries on FreeBSD - -include make_common.mak - -SWT_VERSION=$(maj_ver)$(min_ver) - -# Define the installation directories for various products. -# JAVA_HOME - The JDK > 1.3 -# MOTIF_HOME - Motif includes and libraries -# QT_HOME - identifier namespace package (used by KDE) -MOTIF_HOME = /usr/X11R6 -QT_HOME = /usr/X11R6 - -# Define the various DLL (shared) libraries to be made. - -SWT_PREFIX = swt -WS_PREFIX = motif -SWT_LIB = lib$(SWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -SWT_OBJS = swt.o callback.o os.o os_structs.o os_custom.o os_stats.o -SWT_LIBS = -L$(MOTIF_HOME)/lib -lXm -L/usr/local/lib -L/usr/X11R6/lib \ - -rpath . -x -shared -lX11 -lm -lXext -lXt -lXp -lXinerama \ - -lXtst -liconv -CFLAGS = -O -s -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DMOTIF -fpic -I./ \ - -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd \ - -I$(JAVA_HOME)/include/freebsd -I$(MOTIF_HOME)/include \ - -I/usr/X11R6/include -I/usr/local/include - -GNOME_PREFIX = swt-gnome -GNOME_LIB = lib$(GNOME_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -GNOME_OBJECTS= swt.o gnome.o gnome_structs.o gnome_stats.o -GNOME_CFLAGS = `pkg-config --cflags gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` -GNOME_LIBS = -shared -fpic -fPIC `pkg-config --libs gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` - -KDE_PREFIX = swt-kde -KDE_LIB = lib$(KDE_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -KDE_OBJS = kde.o -KDE_LIBS = -L/usr/local/lib -L$(QT_HOME)/lib -shared -lkdecore -lqt-mt -KDE_CFLAGS = -fno-rtti -c -O -I$(QT_HOME)/include -I$(JAVA_HOME)/include \ - -I$(JAVA_HOME)/include/bsd \ - -I$(JAVA_HOME)/include/freebsd -I/usr/local/include - -AWT_PREFIX = swt-awt -AWT_LIB = lib$(AWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -AWT_OBJS = swt_awt.o -AWT_LIBS = -L$(JAVA_HOME)/jre/lib/i386 -ljawt -shared - -GTK_PREFIX = swt-gtk -GTK_LIB = lib$(GTK_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -GTK_OBJS = swt.o gtk.o -GTK_CFLAGS = `pkg-config --cflags gtk+-2.0` -GTK_LIBS = -x -shared `pkg-config --libs-only-L gtk+-2.0` `pkg-config --libs-only-l --libs-only-L gtk+-2.0` - -all: make_swt make_awt $(MAKE_GNOME) make_gtk - -kde: make_kde - -make_swt: $(SWT_LIB) - -$(SWT_LIB): $(SWT_OBJS) - $(LD) -o $@ $(SWT_OBJS) $(SWT_LIBS) - -swt.o: swt.c swt.h - $(CC) $(CFLAGS) -c swt.c -os.o: os.c os.h swt.h os_custom.h - $(CC) $(CFLAGS) -c os.c -os_structs.o: os_structs.c os_structs.h os.h swt.h - $(CC) $(CFLAGS) -c os_structs.c -os_custom.o: os_custom.c os_structs.h os.h swt.h - $(CC) $(CFLAGS) -c os_custom.c -os_stats.o: os_stats.c os_structs.h os.h os_stats.h swt.h - $(CC) $(CFLAGS) -c os_stats.c - -make_gnome: $(GNOME_LIB) - -$(GNOME_LIB): $(GNOME_OBJECTS) - $(CC) -o $@ $(GNOME_OBJECTS) $(GNOME_LIBS) - -gnome.o: gnome.c - $(CC) -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome.o gnome.c - -gnome_structs.o: gnome_structs.c - $(CC) -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome_structs.o gnome_structs.c - -gnome_stats.o: gnome_stats.c - $(CC) -O -Wall -DSWT_VERSION=$(SWT_VERSION) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/bsd -I$(JAVA_HOME)/include/freebsd $(GNOME_CFLAGS) -c -o gnome_stats.o gnome_stats.c - -make_kde: $(KDE_LIB) - -$(KDE_LIB): $(KDE_OBJS) - ld -o $@ $(KDE_OBJS) $(KDE_LIBS) - -$(KDE_OBJS): kde.cc - $(CXX) $(KDE_CFLAGS) -o kde.o kde.cc - -make_awt: $(AWT_LIB) - -$(AWT_LIB): $(AWT_OBJS) - ld -o $@ $(AWT_OBJS) $(AWT_LIBS) - -make_gtk: $(GTK_LIB) - -$(GTK_LIB): $(GTK_OBJS) - ld -o $@ $(GTK_OBJS) $(GTK_LIBS) - -gtk.o: gtk.c - $(CC) $(CFLAGS) $(GTK_CFLAGS) -c -o gtk.o gtk.c - -clean: - rm -f *.so *.o - diff --git a/java/eclipse/files/make_gtk.mak b/java/eclipse/files/make_gtk.mak deleted file mode 100644 index 0ec9b0762ed4..000000000000 --- a/java/eclipse/files/make_gtk.mak +++ /dev/null @@ -1,188 +0,0 @@ -#******************************************************************************* -# Copyright (c) 2000, 2004 IBM Corporation and others. -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Common Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/cpl-v10.html -# -# Contributors: -# IBM Corporation - initial API and implementation -#******************************************************************************* - -# Makefile for creating SWT libraries for FreeBSD GTK - -include make_common.mak - -LD=$(CC) - -SWT_VERSION=$(maj_ver)$(min_ver) - -# Define the installation directories for various products. -# Your system may have these in a different place. -# JAVA_HOME - IBM's version of Java - -#JAVA_HOME = /usr/local/jdk1.4.2 -AWT_LIB_PATH = $(JAVA_HOME)/jre/lib/i386 -XTEST_LIB_PATH = /usr/X11R6/lib - -# mozilla source distribution folder -MOZILLA_HOME = /usr/X11R6 - -# Define the various shared libraries to be build. -WS_PREFIX = gtk -SWT_PREFIX = swt -AWT_PREFIX = swt-awt -SWTPI_PREFIX = swt-pi -ATK_PREFIX = swt-atk -GNOME_PREFIX = swt-gnome -MOZILLA_PREFIX = swt-mozilla -SWT_LIB = lib$(SWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -AWT_LIB = lib$(AWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -SWTPI_LIB = lib$(SWTPI_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -ATK_LIB = lib$(ATK_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -GNOME_LIB = lib$(GNOME_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so -MOZILLA_LIB = lib$(MOZILLA_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so - -GTKCFLAGS = `pkg-config --cflags gtk+-2.0` -GTKLIBS = `pkg-config --libs gtk+-2.0 gthread-2.0` -L$(XTEST_LIB_PATH) -lXtst - -AWT_LIBS = -L$(AWT_LIB_PATH) -ljawt -shared - -ATKCFLAGS = `pkg-config --cflags atk gtk+-2.0` -ATKLIBS = `pkg-config --libs atk gtk+-2.0` - -GNOMECFLAGS = `pkg-config --cflags gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` -GNOMELIBS = `pkg-config --libs gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` - -MOZILLACFLAGS = -O \ - -fno-rtti \ - -Wall \ - -I./ \ - -I$(JAVA_HOME)/include \ - -I$(JAVA_HOME)/include/bsd \ - -I$(JAVA_HOME)/include/freebsd \ - -include $(MOZILLA_HOME)/include/$(BROWSER)/mozilla-config.h \ - -I$(MOZILLA_HOME)/include/$(BROWSER) \ - -I$(MOZILLA_HOME)/include/$(BROWSER)/xpcom \ - -I$(MOZILLA_HOME)/include/$(BROWSER)/string \ - -I$(MOZILLA_HOME)/include/$(BROWSER)/nspr \ - -I$(MOZILLA_HOME)/include/$(BROWSER)/embed_base \ - -I$(MOZILLA_HOME)/include/$(BROWSER)/gfx - -MOZILLALIBS = -L$(MOZILLA_HOME)/lib/$(BROWSER) \ - -L$(MOZILLA_HOME)/lib/$(BROWSER) \ - -lgtkembedmoz -lxpcom -MOZILLALDFLAGS = -s - -SWT_OBJECTS = swt.o callback.o -AWT_OBJECTS = swt_awt.o -SWTPI_OBJECTS = swt.o os.o os_structs.o os_custom.o os_stats.o -ATK_OBJECTS = swt.o atk.o atk_structs.o atk_custom.o atk_stats.o -GNOME_OBJECTS = swt.o gnome.o gnome_structs.o gnome_stats.o -MOZILLA_OBJECTS = xpcom.o - -CFLAGS = -O -Wall \ - -DSWT_VERSION=$(SWT_VERSION) \ - -DFREEBSD -DGTK \ - -I$(JAVA_HOME)/include \ - -I$(JAVA_HOME)/include/bsd \ - -I$(JAVA_HOME)/include/freebsd \ - -I../../../Eclipse_SWT/common/library \ - -I../../../Eclipse_SWT_PI/gtk/library \ - -I/usr/X11R6/include \ - -fpic \ - ${SWT_PTR_CFLAGS} - -LIBS = -shared -fpic - -# -# Target Rules -# - -all: make_swt make_atk $(MAKE_GNOME) make_awt make_mozilla - -all64: make_swt make_atk make_gnome make_awt - -# -# SWT libs -# -make_swt: $(SWT_LIB) $(SWTPI_LIB) - -$(SWT_LIB): $(SWT_OBJECTS) - $(LD) $(LIBS) -o $(SWT_LIB) $(SWT_OBJECTS) - -callback.o: callback.c callback.h - $(CC) $(CFLAGS) -c callback.c - -$(SWTPI_LIB): $(SWTPI_OBJECTS) - $(LD) $(LIBS) $(GTKLIBS) -o $(SWTPI_LIB) $(SWTPI_OBJECTS) - -swt.o: swt.c swt.h - $(CC) $(CFLAGS) -c swt.c -os.o: os.c os.h swt.h os_custom.h - $(CC) $(CFLAGS) $(GTKCFLAGS) -c os.c -os_structs.o: os_structs.c os_structs.h os.h swt.h - $(CC) $(CFLAGS) $(GTKCFLAGS) -c os_structs.c -os_custom.o: os_custom.c os_structs.h os.h swt.h - $(CC) $(CFLAGS) $(GTKCFLAGS) -c os_custom.c -os_stats.o: os_stats.c os_structs.h os.h os_stats.h swt.h - $(CC) $(CFLAGS) $(GTKCFLAGS) -c os_stats.c - -# -# AWT lib -# -make_awt:$(AWT_LIB) - -$(AWT_LIB): $(AWT_OBJECTS) - $(LD) $(AWT_LIBS) -o $(AWT_LIB) $(AWT_OBJECTS) - -# -# Atk lib -# -make_atk: $(ATK_LIB) - -$(ATK_LIB): $(ATK_OBJECTS) - $(LD) $(LIBS) $(ATKLIBS) -o $(ATK_LIB) $(ATK_OBJECTS) - -atk.o: atk.c atk.h - $(CC) $(CFLAGS) $(ATKCFLAGS) -c atk.c -atk_structs.o: atk_structs.c atk_structs.h atk.h - $(CC) $(CFLAGS) $(ATKCFLAGS) -c atk_structs.c -atk_custom.o: atk_custom.c atk_structs.h atk.h - $(CC) $(CFLAGS) $(ATKCFLAGS) -c atk_custom.c -atk_stats.o: atk_stats.c atk_structs.h atk_stats.h atk.h - $(CC) $(CFLAGS) $(ATKCFLAGS) -c atk_stats.c - -# -# Gnome lib -# -make_gnome: $(GNOME_LIB) - -$(GNOME_LIB): $(GNOME_OBJECTS) - $(LD) $(LIBS) $(GNOMELIBS) -o $(GNOME_LIB) $(GNOME_OBJECTS) - -gnome.o: gnome.c - $(CC) $(CFLAGS) $(GNOMECFLAGS) -c gnome.c - -gnome_structs.o: gnome_structs.c - $(CC) $(CFLAGS) $(GNOMECFLAGS) -c gnome_structs.c - -gnome_stats.o: gnome_stats.c gnome_stats.h - $(CC) $(CFLAGS) $(GNOMECFLAGS) -c gnome_stats.c - -# -# Mozilla lib -# -make_mozilla:$(MOZILLA_LIB) - -$(MOZILLA_LIB): $(MOZILLA_OBJECTS) - $(CXX) $(LIBS) $(MOZILLALDFLAGS) -o $(MOZILLA_LIB) $(MOZILLA_OBJECTS) $(MOZILLALIBS) - -xpcom.o: xpcom.cpp - $(CXX) $(MOZILLACFLAGS) -c xpcom.cpp - -# -# Clean -# -clean: - rm -f *.o *.so diff --git a/java/eclipse/files/make_gtk.xml b/java/eclipse/files/make_gtk.xml deleted file mode 100644 index 16486806af48..000000000000 --- a/java/eclipse/files/make_gtk.xml +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project default="build_gtk_freebsd_lib" basedir="../../.."> - -<target name="init"> - <tstamp/> - <property name="lib_destdir" value="${basedir}/../org.eclipse.swt.gtk/os/freebsd/x86" /> -</target> - -<!-- Build swt.so for GTK --> -<!-- Output .so for this platform into the org.eclipse.swt.gtk/os directory --> -<target name="build_gtk_freebsd_lib" depends="init"> - <mkdir dir="${lib_destdir}" /> - <exec dir="./bin/library" executable="sh"> - <arg line="${basedir}/bin/library/build.sh"/> - </exec> - <copy todir="${lib_destdir}"> - <fileset dir="${basedir}/bin/library/" includes="*.so"/> - </copy> - <eclipse.refreshLocal resource="org.eclipse.swt.gtk" depth="infinite" /> -</target> - -<target name="clean" depends="init"> - <tstamp/> - <exec dir="./bin/library" executable="sh"> - <arg line="${basedir}/bin/library/build.sh"/> - <arg line="clean"/> - </exec> -</target> - -</project> diff --git a/java/eclipse/files/make_motif.xml b/java/eclipse/files/make_motif.xml deleted file mode 100644 index 9952d3c1974d..000000000000 --- a/java/eclipse/files/make_motif.xml +++ /dev/null @@ -1,113 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<project default="build_motif_freebsd_lib" basedir="../../.."> - -<target name="init_linux"> - <tstamp/> - <property name="fragment_dir" value="${basedir}/../org.eclipse.swt.motif" /> - <property name="jar_destdir" value="${fragment_dir}/ws/linux" /> - <property name="lib_destdir" value="${fragment_dir}/os/linux/x86" /> - <property name="lib_extension" value=".so"/> - - <mkdir dir="${lib_destdir}" /> -</target> - -<target name="init_freebsd"> - <tstamp/> - <property name="fragment_dir" value="${basedir}/../org.eclipse.swt.motif" /> - <property name="jar_destdir" value="${fragment_dir}/ws/freebsd" /> - <property name="lib_destdir" value="${fragment_dir}/os/freebsd/x86" /> - <property name="lib_extension" value=".so"/> - - <mkdir dir="${lib_destdir}" /> -</target> - -<target name="init_aix"> - <tstamp/> - <property name="fragment_dir" value="${basedir}/../org.eclipse.swt.motif" /> - <property name="jar_destdir" value="${fragment_dir}/ws/aix" /> - <property name="lib_destdir" value="${fragment_dir}/os/aix/ppc" /> - <property name="lib_extension" value=".a"/> - - <mkdir dir="${lib_destdir}" /> -</target> - -<target name="init_hpux_PA_RISC"> - <tstamp/> - <property name="fragment_dir" value="${basedir}/../org.eclipse.swt.motif" /> - <property name="jar_destdir" value="${fragment_dir}/ws/hpux" /> - <property name="lib_destdir" value="${fragment_dir}/os/hpux/PA_RISC" /> - <property name="lib_extension" value=".sl"/> - - <mkdir dir="${lib_destdir}" /> -</target> - -<target name="init_hpux_ia64"> - <tstamp/> - <property name="fragment_dir" value="${basedir}/../org.eclipse.swt.motif" /> - <property name="jar_destdir" value="${fragment_dir}/ws/hpux" /> - <property name="lib_destdir" value="${fragment_dir}/os/hpux/ia64" /> - <property name="lib_extension" value=".so"/> - - <mkdir dir="${lib_destdir}" /> -</target> - -<target name="init_solaris"> - <tstamp/> - <property name="fragment_dir" value="${basedir}/../org.eclipse.swt.motif" /> - <property name="jar_destdir" value="${fragment_dir}/ws/solaris" /> - <property name="lib_destdir" value="${fragment_dir}/os/solaris/sparc" /> - <property name="lib_extension" value=".so"/> - - <mkdir dir="${lib_destdir}" /> -</target> - -<target name="build_file_lib"> - <exec dir="./bin/library" executable="sh"> - <arg line="${basedir}/bin/library/build.sh"/> - </exec> - <copy todir="${lib_destdir}"> - <fileset dir="${basedir}/bin/library/" includes="*${lib_extension}"/> - </copy> - <eclipse.refreshLocal resource="org.eclipse.swt.motif" depth="infinite" /> -</target> - -<!-- Build swt.so for motif linux --> -<!-- Output .so for this platform into the org.eclipse.swt.motif/os directory --> -<target name="build_motif_linux_lib" depends="init_linux,build_file_lib"> -</target> - -<!-- Build swt.so for motif freebsd --> -<!-- Output .so for this platform into the org.eclipse.swt.motif/os directory --> -<target name="build_motif_freebsd_lib" depends="init_freebsd,build_file_lib"> -</target> - -<!-- Build swt.so for aix ppc --> -<!-- Output .so for this platform into the org.eclipse.swt.motif/os directory --> -<target name="build_motif_aix_lib" depends="init_aix,build_file_lib"> -</target> - -<!-- Build swt.so for hpux PA_RISC --> -<!-- Output .sl for this platform into the org.eclipse.swt.motif/os directory --> -<target name="build_motif_hpux_PA_RISC_lib" depends="init_hpux_PA_RISC,build_file_lib"> -</target> - -<!-- Build swt.so for hpux ia64 --> -<!-- Output .so for this platform into the org.eclipse.swt.motif/os directory --> -<target name="build_motif_hpux_ia64_lib" depends="init_hpux_ia64,build_file_lib"> -</target> - -<!-- Build swt.so for solaris sparc --> -<!-- Output .so for this platform into the org.eclipse.swt.motif/os directory --> -<target name="build_motif_solaris_lib" depends="init_solaris,build_file_lib"> -</target> - -<target name="clean"> - <tstamp/> - <exec dir="./bin/library" executable="sh"> - <arg line="${basedir}/bin/library/build.sh"/> - <arg line="clean"/> - </exec> -</target> - -</project> diff --git a/java/eclipse/files/manualpatch-plugins-swt-gtk-build.sh b/java/eclipse/files/manualpatch-plugins-swt-gtk-build.sh new file mode 100644 index 000000000000..ed38417a85b6 --- /dev/null +++ b/java/eclipse/files/manualpatch-plugins-swt-gtk-build.sh @@ -0,0 +1,42 @@ +--- plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh.orig Fri May 13 11:37:09 2005 ++++ plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh Sat May 14 21:02:00 2005 +@@ -100,6 +100,33 @@ + ;; + esac + ;; ++ "FreeBSD") ++ CC=gcc ++ LD=gcc ++ XTEST_LIB_PATH=$X11BASE/lib ++ GECKO_I=${X11BASE}/include/${BROWSER} ++ GECKO_INCLUDES="-I${GECKO_I} -I${GECKO_I}/nspr -I${GECKO_I}/xpcom -I${GECKO_I}/string -I${GECKO_I}/embed_base -I${GECKO_I}/embedstring" ++ GECKO_L=${X11BASE}/lib/${BROWSER} ++ GECKO_LIBS="-L${GECKO_L} -lxpcom -lnspr4 -lplds4 -lplc4 -lgtkembedmoz" ++ case $MODEL in ++ "amd64") ++ AWT_LIB_PATH=$JAVA_HOME/jre/lib/amd64 ++ SWT_PTR_CFLAGS=-DSWT_PTR_SIZE_64 ++ OUTPUT_DIR=../../../org.eclipse.swt.gtk.freebsd.amd64 ++ makefile="make_freebsd.mak" ++ echo "Building FreeBSD GTK AMD64 version of SWT" ++ ;; ++ "i386") ++ AWT_LIB_PATH=$JAVA_HOME/jre/lib/i386 ++ OUTPUT_DIR=../../../org.eclipse.swt.gtk.freebsd.x86 ++ makefile="make_freebsd.mak" ++ echo "Building FreeBSD GTK x86 version of SWT" ++ ;; ++ *) ++ echo "*** Unknown MODEL <${MODEL}>" ++ ;; ++ esac ++ ;; + "SunOS") + CC=gcc + LD=gcc +@@ -128,4 +155,4 @@ + + export CC LD JAVA_HOME AWT_LIB_PATH XTEST_LIB_PATH GECKO_SDK GECKO_INCLUDES GECKO_LIBS SWT_PTR_CFLAGS CDE_HOME OUTPUT_DIR + +-make -f $makefile ${1} ${2} ${3} ${4} ++gmake -f $makefile ${1} ${2} ${3} ${4} diff --git a/java/eclipse/files/manualpatch-plugins-swt-gtk-make_freebsd.mak b/java/eclipse/files/manualpatch-plugins-swt-gtk-make_freebsd.mak new file mode 100644 index 000000000000..967dec3c6db3 --- /dev/null +++ b/java/eclipse/files/manualpatch-plugins-swt-gtk-make_freebsd.mak @@ -0,0 +1,23 @@ +--- plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/make_freebsd.mak.orig Sat May 14 19:50:23 2005 ++++ plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/make_freebsd.mak Sat May 14 21:24:34 2005 +@@ -78,15 +78,16 @@ + CFLAGS = -O -Wall \ + -DSWT_VERSION=$(SWT_VERSION) \ + $(NATIVE_STATS) \ +- -DLINUX -DGTK \ ++ -DFREEBSD -DGTK \ + -I$(JAVA_HOME)/include \ + -I$(JAVA_HOME)/include/freebsd \ +- -fpic \ ++ -I$(X11BASE)/include \ ++ -fpic -fPIC \ + ${SWT_PTR_CFLAGS} +-LIBS = -shared -fpic -s ++LIBS = -shared -fpic -fPIC -s + + +-all: make_swt make_atk make_gnome make_awt ++all: make_swt make_atk $(MAKE_GNOME) make_awt $(MAKE_MOZILLA) $(MAKE_CAIRO) + + # + # SWT libs diff --git a/java/eclipse/files/manualpatch-plugins-swt-gtk-os_custom.h b/java/eclipse/files/manualpatch-plugins-swt-gtk-os_custom.h new file mode 100644 index 000000000000..0e47fc2a22f4 --- /dev/null +++ b/java/eclipse/files/manualpatch-plugins-swt-gtk-os_custom.h @@ -0,0 +1,59 @@ +--- plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h.orig Mon Jun 27 21:54:10 2005 ++++ plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.h Thu Jul 14 20:28:19 2005 +@@ -21,31 +21,31 @@ + #define PTR_sizeof() sizeof(void *) + + /* Libraries for dynamic loaded functions */ +-#define gtk_file_chooser_add_filter_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_dialog_new_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_get_current_folder_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_get_filename_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_get_filenames_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_set_current_folder_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_set_current_name_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_set_extra_widget_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_set_filename_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_chooser_set_select_multiple_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_filter_add_pattern_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_filter_new_LIB "libgtk-x11-2.0.so.0" +-#define gtk_file_filter_set_name_LIB "libgtk-x11-2.0.so.0" +-#define gtk_tree_selection_get_selected_rows_LIB "libgtk-x11-2.0.so.0" +-#define gtk_tree_view_column_cell_get_position_LIB "libgtk-x11-2.0.so.0" +-#define gtk_entry_set_alignment_LIB "libgtk-x11-2.0.so.0" +-#define gdk_draw_pixbuf_LIB "libgdk-x11-2.0.so.0" +-#define gdk_screen_get_default_LIB "libgdk-x11-2.0.so.0" +-#define gdk_screen_get_monitor_at_window_LIB "libgdk-x11-2.0.so.0" +-#define gdk_screen_get_monitor_geometry_LIB "libgdk-x11-2.0.so.0" +-#define gdk_screen_get_n_monitors_LIB "libgdk-x11-2.0.so.0" +-#define gdk_screen_get_number_LIB "libgdk-x11-2.0.so.0" +-#define gdk_window_set_keep_above_LIB "libgdk-x11-2.0.so.0" +-#define gdk_window_set_accept_focus_LIB "libgdk-x11-2.0.so.0" +-#define gdk_x11_screen_get_window_manager_name_LIB "libgdk-x11-2.0.so.0" ++#define gtk_file_chooser_add_filter_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_dialog_new_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_get_current_folder_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_get_filename_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_get_filenames_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_set_current_folder_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_set_current_name_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_set_extra_widget_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_set_filename_LIB "libgtk-x11-2.0.so" ++#define gtk_file_chooser_set_select_multiple_LIB "libgtk-x11-2.0.so" ++#define gtk_file_filter_add_pattern_LIB "libgtk-x11-2.0.so" ++#define gtk_file_filter_new_LIB "libgtk-x11-2.0.so" ++#define gtk_file_filter_set_name_LIB "libgtk-x11-2.0.so" ++#define gtk_tree_selection_get_selected_rows_LIB "libgtk-x11-2.0.so" ++#define gtk_tree_view_column_cell_get_position_LIB "libgtk-x11-2.0.so" ++#define gtk_entry_set_alignment_LIB "libgtk-x11-2.0.so" ++#define gdk_draw_pixbuf_LIB "libgdk-x11-2.0.so" ++#define gdk_screen_get_default_LIB "libgdk-x11-2.0.so" ++#define gdk_screen_get_monitor_at_window_LIB "libgdk-x11-2.0.so" ++#define gdk_screen_get_monitor_geometry_LIB "libgdk-x11-2.0.so" ++#define gdk_screen_get_n_monitors_LIB "libgdk-x11-2.0.so" ++#define gdk_screen_get_number_LIB "libgdk-x11-2.0.so" ++#define gdk_window_set_keep_above_LIB "libgdk-x11-2.0.so" ++#define gdk_window_set_accept_focus_LIB "libgdk-x11-2.0.so" ++#define gdk_x11_screen_get_window_manager_name_LIB "libgdk-x11-2.0.so" + + /* Field accessors */ + #define GTK_ACCEL_LABEL_SET_ACCEL_STRING(arg0, arg1) (arg0)->accel_string = arg1 diff --git a/java/eclipse/files/manualpatch-plugins-swt-motif-build.sh b/java/eclipse/files/manualpatch-plugins-swt-motif-build.sh new file mode 100644 index 000000000000..67f3e36be840 --- /dev/null +++ b/java/eclipse/files/manualpatch-plugins-swt-motif-build.sh @@ -0,0 +1,28 @@ +--- plugins/org.eclipse.swt/Eclipse SWT PI/motif/library/build.sh.orig Fri May 13 11:37:09 2005 ++++ plugins/org.eclipse.swt/Eclipse SWT PI/motif/library/build.sh Sat May 14 21:03:05 2005 +@@ -54,6 +54,18 @@ + echo "Building Linux motif x86 version of SWT" + esac + ;; ++ "FreeBSD") ++ case $MODEL in ++ i?86) ++ OUTPUT_DIR=../../../org.eclipse.swt.motif.freebsd.x86 ++ makefile="make_freebsd.mak" ++ echo "Building FreeBSD motif x86 version of SWT" ++ ;; ++ *) ++ echo "*** Unknown MODEL <${MODEL}>" ++ ;; ++ esac ++ ;; + "SunOS") + case $MODEL in + *) +@@ -113,4 +125,4 @@ + + export JAVA_HOME MOTIF_HOME CDE_HOME OUTPUT_DIR + +-make -f $makefile $1 $2 $3 $4 +\ No newline at end of file ++gmake -f $makefile $1 $2 $3 $4 diff --git a/java/eclipse/files/manualpatch-plugins-swt-motif-make_freebsd.mak b/java/eclipse/files/manualpatch-plugins-swt-motif-make_freebsd.mak new file mode 100644 index 000000000000..2470de02e8d1 --- /dev/null +++ b/java/eclipse/files/manualpatch-plugins-swt-motif-make_freebsd.mak @@ -0,0 +1,44 @@ +--- plugins/org.eclipse.swt/Eclipse SWT PI/motif/library/make_freebsd.mak.orig Thu Jul 14 20:06:19 2005 ++++ plugins/org.eclipse.swt/Eclipse SWT PI/motif/library/make_freebsd.mak Thu Jul 14 20:14:57 2005 +@@ -25,26 +25,26 @@ + WS_PREFIX = motif + SWT_LIB = lib$(SWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so + SWT_OBJS = swt.o callback.o os.o os_structs.o os_custom.o os_stats.o +-SWT_LIBS = -L$(MOTIF_HOME)/lib -lXm -L/usr/lib -L/usr/X11R6/lib \ +- -rpath . -x -shared -lX11 -lm -lXext -lXt -lXp -ldl -lXinerama -lXtst ++SWT_LIBS = -L$(MOTIF_HOME)/lib -lXm -L$(PREFIX)/lib -L$(X11BASE)/lib \ ++ -rpath . -x -shared -lX11 -lm -lXext -lXt -lXp -lXinerama + + # Uncomment for Native Stats tool + #NATIVE_STATS = -DNATIVE_STATS + +-CFLAGS = -O -s -Wall -DSWT_VERSION=$(SWT_VERSION) $(NATIVE_STATS) -DLINUX -DMOTIF -fpic \ +- -I$(JAVA_HOME)/include -I$(MOTIF_HOME)/include -I/usr/X11R6/include ++CFLAGS = -O -s -Wall -DSWT_VERSION=$(SWT_VERSION) $(NATIVE_STATS) -DFREEBSD -DMOTIF -fpic -fPIC \ ++ -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/freebsd -I$(MOTIF_HOME)/include -I$(X11BASE)/include -I$(PREFIX)/include + + # Do not use pkg-config to get libs because it includes unnecessary dependencies (i.e. pangoxft-1.0) + GNOME_PREFIX = swt-gnome + GNOME_LIB = lib$(GNOME_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so + GNOME_OBJECTS = swt.o gnome.o gnome_structs.o gnome_stats.o +-GNOME_CFLAGS = -O -Wall -DSWT_VERSION=$(SWT_VERSION) $(NATIVE_STATS) -DLINUX -DGTK -I$(JAVA_HOME)/include `pkg-config --cflags gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` ++GNOME_CFLAGS = -O -Wall -DSWT_VERSION=$(SWT_VERSION) $(NATIVE_STATS) -DFREEBSD -DGTK -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/freebsd -fpic -fPIC `pkg-config --cflags gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` + GNOME_LIBS = -shared -fpic -fPIC `pkg-config --libs-only-L gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` -lgnomevfs-2 -lgnome-2 -lgnomeui-2 + + AWT_PREFIX = swt-awt + AWT_LIB = lib$(AWT_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so + AWT_OBJS = swt_awt.o +-AWT_LIBS = -L$(JAVA_HOME)/jre/bin -ljawt -shared ++AWT_LIBS = -L$(JAVA_HOME)/jre/lib/$(MACHINE_ARCH) -ljawt -shared + + GTK_PREFIX = swt-gtk + GTK_LIB = lib$(GTK_PREFIX)-$(WS_PREFIX)-$(SWT_VERSION).so +@@ -77,7 +77,7 @@ + ${SWT_PTR_CFLAGS} + MOZILLALIBS = -shared -s -Wl,--version-script=mozilla_exports -Bsymbolic ${GECKO_LIBS} + +-all: make_swt make_awt make_gnome make_gtk ++all: make_swt make_awt $(MAKE_GNOME) make_gtk + + make_swt: $(SWT_LIB) + diff --git a/java/eclipse/files/patch-assemble b/java/eclipse/files/patch-assemble new file mode 100644 index 000000000000..69143bf43c7e --- /dev/null +++ b/java/eclipse/files/patch-assemble @@ -0,0 +1,39 @@ +--- assemble.org.eclipse.sdk.linux.motif.x86.xml.orig Wed Jul 13 00:36:40 2005 ++++ assemble.org.eclipse.sdk.linux.motif.x86.xml Wed Jul 13 00:38:19 2005 +@@ -610,10 +610,5 @@ + </exec> + <move file="${archiveFullPath}" tofile="${assemblyTempDir}/${collectingFolder}/tmp.tar"/> + <gzip src="${assemblyTempDir}/${collectingFolder}/tmp.tar" zipfile="${archiveFullPath}"/> +- <exec executable="rm"> +- <arg line="-rf"/> +- <arg line="'${assemblyTempDir}'"/> +- </exec> +- <delete dir="${assemblyTempDir}"/> + </target> + </project> +--- assemble.org.eclipse.sdk.linux.gtk.x86.xml.orig Wed Jul 13 00:40:52 2005 ++++ assemble.org.eclipse.sdk.linux.gtk.x86.xml Wed Jul 13 00:40:58 2005 +@@ -610,10 +610,5 @@ + </exec> + <move file="${archiveFullPath}" tofile="${assemblyTempDir}/${collectingFolder}/tmp.tar"/> + <gzip src="${assemblyTempDir}/${collectingFolder}/tmp.tar" zipfile="${archiveFullPath}"/> +- <exec executable="rm"> +- <arg line="-rf"/> +- <arg line="'${assemblyTempDir}'"/> +- </exec> +- <delete dir="${assemblyTempDir}"/> + </target> + </project> +--- assemble.org.eclipse.sdk.linux.gtk.x86_64.xml.orig Wed Jul 13 00:43:03 2005 ++++ assemble.org.eclipse.sdk.linux.gtk.x86_64.xml Wed Jul 13 00:43:07 2005 +@@ -610,10 +610,5 @@ + </exec> + <move file="${archiveFullPath}" tofile="${assemblyTempDir}/${collectingFolder}/tmp.tar"/> + <gzip src="${assemblyTempDir}/${collectingFolder}/tmp.tar" zipfile="${archiveFullPath}"/> +- <exec executable="rm"> +- <arg line="-rf"/> +- <arg line="'${assemblyTempDir}'"/> +- </exec> +- <delete dir="${assemblyTempDir}"/> + </target> + </project> diff --git a/java/eclipse/files/patch-assemble-all b/java/eclipse/files/patch-assemble-all deleted file mode 100644 index 4ffff7bbf067..000000000000 --- a/java/eclipse/files/patch-assemble-all +++ /dev/null @@ -1,15 +0,0 @@ ---- assemble.org.eclipse.sdk.all.xml.orig Sun Oct 17 22:04:02 2004 -+++ assemble.org.eclipse.sdk.all.xml Sun Oct 17 22:03:18 2004 -@@ -19,6 +19,12 @@ - <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.linux.motif.x86"> - <property name="assembleScriptName" value="assemble.org.eclipse.sdk.linux.motif.x86.xml"/> - </ant> -+ <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.freebsd.gtk.x86"> -+ <property name="assembleScriptName" value="assemble.org.eclipse.sdk.freebsd.gtk.x86.xml"/> -+ </ant> -+ <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.freebsd.motif.x86"> -+ <property name="assembleScriptName" value="assemble.org.eclipse.sdk.freebsd.motif.x86.xml"/> -+ </ant> - <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.solaris.motif.sparc"> - <property name="assembleScriptName" value="assemble.org.eclipse.sdk.solaris.motif.sparc.xml"/> - </ant> diff --git a/java/eclipse/files/patch-build b/java/eclipse/files/patch-build index 21a526f1b77f..3dbdaaa59210 100644 --- a/java/eclipse/files/patch-build +++ b/java/eclipse/files/patch-build @@ -1,22 +1,11 @@ ---- build.orig Thu Sep 16 15:50:23 2004 -+++ build Sat Oct 23 06:19:32 2004 -@@ -1,6 +1,6 @@ - #! /bin/sh - --export ANT_OPTS=-Xmx1000M -+export ANT_OPTS=-Xmx128M - - bootclasspath=$JAVA_HOME/jre/lib/rt.jar - os="" -@@ -51,9 +51,9 @@ +--- build.orig Wed Jul 13 00:45:46 2005 ++++ build Wed Jul 13 00:46:02 2005 +@@ -52,7 +52,7 @@ exit 1 fi --if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-amd64" ] || [ "$os-$ws-$arch" = "linux-gtk-ia64" ] ||[ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] -+if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-amd64" ] || [ "$os-$ws-$arch" = "linux-gtk-ia64" ] ||[ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] || [ "$os-$ws-$arch" = "freebsd-gtk-x86" ] || [ "$os-$ws-$arch" = "freebsd-motif-x86" ] +-if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86_64" ] || [ "$os-$ws-$arch" = "linux-gtk-ia64" ] || [ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "solaris-gtk-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc64" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-ia64" ] || [ "$os-$ws-$arch" = "hpux-motif-ia64_32" ] ++if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86_64" ] || [ "$os-$ws-$arch" = "linux-gtk-ia64" ] || [ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "solaris-gtk-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc64" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-ia64" ] || [ "$os-$ws-$arch" = "hpux-motif-ia64_32" ] || [ "$os-$ws-$arch" = "freebsd-gtk-x86" ] || [ "$os-$ws-$arch" = "freebsd-motif-x86" ] || [ "$os-$ws-$arch" = "freebsd-gtk-amd64" ] then -- ant -buildfile build.xml $target -DinstallOs=$os -DinstallWs=$ws -DinstallArch=$arch -Dbootclasspath=$bootclasspath -DjavacTarget=1.2 -+ ant -buildfile build.xml $target -DinstallOs=$os -DinstallWs=$ws -DinstallArch=$arch -Dbootclasspath=$bootclasspath -DjavacTarget=1.4 - else - echo "The os-ws-arch combination of $os-$ws-$arch is not valid." - exit 1 + ORIGCLASSPATH=$CLASSPATH;export ORIGCLASSPATH + ant -q -buildfile jdtcoresrc/compilejdtcorewithjavac.xml diff --git a/java/eclipse/files/patch-build.bat b/java/eclipse/files/patch-build.bat new file mode 100644 index 000000000000..27006ce8beda --- /dev/null +++ b/java/eclipse/files/patch-build.bat @@ -0,0 +1,12 @@ +--- build.bat.orig Mon Jun 27 21:55:26 2005 ++++ build.bat Sun Jul 17 18:21:31 2005 +@@ -44,6 +44,9 @@ + if %os%-%ws%-%arch%==qnx-photon-x86 goto run + if %os%-%ws%-%arch%==hpux-motif-ia64_32 goto run + if %os%-%ws%-%arch%==macosx-carbon-ppc goto run ++if %os%-%ws%-%arch%==freebsd-motif-x86 goto run ++if %os%-%ws%-%arch%==freebsd-gtk-x86 goto run ++if %os%-%ws%-%arch%==freebsd-gtk-amd64 goto run + + ECHO The ws os arch combination entered is not valid. + goto end diff --git a/java/eclipse/files/patch-build.xml b/java/eclipse/files/patch-build.xml new file mode 100644 index 000000000000..d9b351762b89 --- /dev/null +++ b/java/eclipse/files/patch-build.xml @@ -0,0 +1,30 @@ +--- build.xml.orig Mon Jun 27 21:55:26 2005 ++++ build.xml Sun Jul 17 18:50:50 2005 +@@ -63,11 +63,11 @@ + <!--unzip launcher --> + <property name="launcherlibs" value="${buildDirectory}/launchertmp" /> + <mkdir dir="${launcherlibs}" /> +- <unzip dest="${launcherlibs}"> +- <fileset dir="${buildDirectory}/plugins/org.eclipse.platform.source/src/"> +- <include name="org.eclipse.platform_*/launchersrc.zip" /> ++ <copy todir="${launcherlibs}"> ++ <fileset dir="${buildDirectory}/features/org.eclipse.platform.launchers"> ++ <include name ="**"/> + </fileset> +- </unzip> ++ </copy> + <exec dir="${launcherlibs}/library/${installWs}/" executable="sh" failonerror="true"> + <arg line="build.sh" /> + </exec> +@@ -265,7 +265,10 @@ + + <!--used to add doc plug-ins to result after initial assembly--> + <condition property="archive.format" value="tar"> +- <equals arg1="${installOs}" arg2="linux" /> ++ <or> ++ <equals arg1="${installOs}" arg2="linux" /> ++ <equals arg1="${installOs}" arg2="freebsd" /> ++ </or> + </condition> + <property name="archive.format" value="zip" /> + </target> diff --git a/java/eclipse/files/patch-eclipseShm b/java/eclipse/files/patch-eclipseShm deleted file mode 100644 index 901f8d787326..000000000000 --- a/java/eclipse/files/patch-eclipseShm +++ /dev/null @@ -1,15 +0,0 @@ ---- plugins/platform-launcher/library/eclipseShm.c.orig Wed Apr 21 03:55:49 2004 -+++ plugins/platform-launcher/library/eclipseShm.c Wed Apr 21 03:55:57 2004 -@@ -178,11 +178,11 @@ - - #else /* Unix like platforms */ - -+#include <sys/types.h> - #include <sys/shm.h> - #include <string.h> - #include <stdlib.h> - #include <stdio.h> --#include <sys/types.h> - #include <unistd.h> - - int createSharedData(char** id, int size) { diff --git a/java/eclipse/files/patch-features-jdt-build b/java/eclipse/files/patch-features-jdt-build.xml index 7c1cc432fdb7..05d56b033f71 100644 --- a/java/eclipse/files/patch-features-jdt-build +++ b/java/eclipse/files/patch-features-jdt-build.xml @@ -1,21 +1,27 @@ ---- features/org.eclipse.jdt/build.xml.orig Thu Jun 3 00:23:02 2004 -+++ features/org.eclipse.jdt/build.xml Thu Jun 3 00:24:29 2004 -@@ -162,6 +162,18 @@ +--- features/org.eclipse.jdt/build.xml.orig Fri May 13 11:34:52 2005 ++++ features/org.eclipse.jdt/build.xml Sat May 14 18:42:27 2005 +@@ -164,6 +164,24 @@ <fileset dir="${basedir}/rootfiles" includes="**" /> </copy> </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ <mkdir dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}"/> ++ <copy todir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" failonerror="true" overwrite="true"> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ </copy> ++ </target> + <target name="rootFilesfreebsd_gtk_x86"> + <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}"/> -+ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true"> ++ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true" overwrite="true"> + <fileset dir="${basedir}/rootfiles" includes="**" /> + </copy> + </target> + <target name="rootFilesfreebsd_motif_x86"> + <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/> -+ <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true"> ++ <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true" overwrite="true"> + <fileset dir="${basedir}/rootfiles" includes="**" /> + </copy> + </target> <target name="rootFilessolaris_motif_sparc"> <mkdir dir="${feature.base}/solaris.motif.sparc/${collectingFolder}"/> - <copy todir="${feature.base}/solaris.motif.sparc/${collectingFolder}" failonerror="true"> + <copy todir="${feature.base}/solaris.motif.sparc/${collectingFolder}" failonerror="true" overwrite="true"> diff --git a/java/eclipse/files/patch-features-jdt-source-build b/java/eclipse/files/patch-features-jdt-source-build deleted file mode 100644 index 620751087709..000000000000 --- a/java/eclipse/files/patch-features-jdt-source-build +++ /dev/null @@ -1,13 +0,0 @@ ---- features/org.eclipse.jdt.source/build.xml.orig Sun Oct 17 22:12:02 2004 -+++ features/org.eclipse.jdt.source/build.xml Sun Oct 17 22:13:55 2004 -@@ -94,6 +94,10 @@ - </target> - <target name="rootFileslinux_motif_x86"> - </target> -+ <target name="rootFilesfreebsd_motif_x86"> -+ </target> -+ <target name="rootFilesfreebsd_gtk_x86"> -+ </target> - <target name="rootFilessolaris_motif_sparc"> - </target> - <target name="rootFilesaix_motif_ppc"> diff --git a/java/eclipse/files/patch-features-jdt-source-build.xml b/java/eclipse/files/patch-features-jdt-source-build.xml new file mode 100644 index 000000000000..28af8014b52f --- /dev/null +++ b/java/eclipse/files/patch-features-jdt-source-build.xml @@ -0,0 +1,15 @@ +--- features/org.eclipse.jdt.source/build.xml.orig Sat Feb 19 12:09:34 2005 ++++ features/org.eclipse.jdt.source/build.xml Sat Mar 26 18:31:36 2005 +@@ -96,6 +96,12 @@ + </target> + <target name="rootFileslinux_motif_x86"> + </target> ++ <target name="rootFilesfreebsd_motif_x86"> ++ </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ </target> + <target name="rootFilessolaris_motif_sparc"> + </target> + <target name="rootFilessolaris_gtk_sparc"> diff --git a/java/eclipse/files/patch-features-launchers-gtk-build.sh b/java/eclipse/files/patch-features-launchers-gtk-build.sh new file mode 100644 index 000000000000..a3e68b8f3260 --- /dev/null +++ b/java/eclipse/files/patch-features-launchers-gtk-build.sh @@ -0,0 +1,41 @@ +--- features/org.eclipse.platform.launchers/library/gtk/build.sh.orig Fri Apr 1 13:57:19 2005 ++++ features/org.eclipse.platform.launchers/library/gtk/build.sh Sun Apr 3 11:37:51 2005 +@@ -67,6 +67,23 @@ + ;; + esac + ;; ++ "FreeBSD") ++ makefile="make_freebsd.mak" ++ defaultOS="freebsd" ++ case $MODEL in ++ "amd64") ++ defaultOSArch="amd64" ++ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" ++ ;; ++ "i386") ++ defaultOSArch="x86" ++ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" ++ ;; ++ *) ++ echo "*** Unknown MODEL <${MODEL}>" ++ ;; ++ esac ++ ;; + "SunOS") + makefile="make_solaris.mak" + defaultOS="solaris" +@@ -112,11 +129,11 @@ + # If the OS is supported (a makefile exists) + if [ "$makefile" != "" ]; then + if [ "$extraArgs" != "" ]; then +- make -f $makefile $extraArgs ++ gmake -f $makefile $extraArgs + else + echo "Building $OS launcher. Defaults: -os $DEFAULT_OS -arch $DEFAULT_OS_ARCH -ws $DEFAULT_WS" +- make -f $makefile clean +- make -f $makefile all ++ gmake -f $makefile clean ++ gmake -f $makefile all + fi + else + echo "Unknown OS ($OS) -- build aborted" diff --git a/java/eclipse/files/patch-features-launchers-gtk-make_freebsd.mak b/java/eclipse/files/patch-features-launchers-gtk-make_freebsd.mak new file mode 100644 index 000000000000..8fef6388c620 --- /dev/null +++ b/java/eclipse/files/patch-features-launchers-gtk-make_freebsd.mak @@ -0,0 +1,11 @@ +--- features/org.eclipse.platform.launchers/library/gtk/make_freebsd.mak.orig Sun Apr 17 20:24:58 2005 ++++ features/org.eclipse.platform.launchers/library/gtk/make_freebsd.mak Sun Apr 17 20:25:45 2005 +@@ -26,7 +26,7 @@ + CC=gcc + OBJS = eclipse.o eclipseUtil.o eclipseShm.o eclipseConfig.o eclipseGtk.o + EXEC = $(PROGRAM_OUTPUT) +-LIBS = `pkg-config --libs-only-L gtk+-2.0` -lgtk-x11-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 -lgdk-x11-2.0 ++LIBS = `pkg-config --libs gtk+-2.0` + CFLAGS = -O -s \ + -fpic \ + -DMOZILLA_FIX \ diff --git a/java/eclipse/files/patch-features-launchers-library-eclipseShm.c b/java/eclipse/files/patch-features-launchers-library-eclipseShm.c new file mode 100644 index 000000000000..f351472d932b --- /dev/null +++ b/java/eclipse/files/patch-features-launchers-library-eclipseShm.c @@ -0,0 +1,17 @@ +--- features/org.eclipse.platform.launchers/library/eclipseShm.c.orig Fri Apr 1 13:55:58 2005 ++++ features/org.eclipse.platform.launchers/library/eclipseShm.c Sun Apr 3 11:34:02 2005 +@@ -182,11 +182,13 @@ + + #else /* Unix like platforms */ + ++#include <machine/param.h> ++#include <sys/types.h> ++#include <sys/ipc.h> + #include <sys/shm.h> + #include <string.h> + #include <stdlib.h> + #include <stdio.h> +-#include <sys/types.h> + #include <unistd.h> + + int createSharedData(char** id, int size) { diff --git a/java/eclipse/files/patch-features-launchers-motif-build.sh b/java/eclipse/files/patch-features-launchers-motif-build.sh new file mode 100644 index 000000000000..3dfeb9174230 --- /dev/null +++ b/java/eclipse/files/patch-features-launchers-motif-build.sh @@ -0,0 +1,33 @@ +--- features/org.eclipse.platform.launchers/library/motif/build.sh~ Sat Feb 19 12:13:49 2005 ++++ features/org.eclipse.platform.launchers/library/motif/build.sh Sun Mar 20 15:27:04 2005 +@@ -55,6 +55,15 @@ + MOTIF_HOME=/bluebird/teamswt/swt-builddir/motif21 + OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" + ;; ++ "FreeBSD") ++ makefile="make_freebsd.mak" ++ defaultOS="freebsd" ++ defaultOSArch="x86" ++ defaultWS="motif" ++ X11_HOME=$X11BASE ++ MOTIF_HOME=$X11BASE ++ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" ++ ;; + "SunOS") + makefile="make_solaris.mak" + defaultOS="solaris" +@@ -122,11 +131,11 @@ + # If the OS is supported (a makefile exists) + if [ "$makefile" != "" ]; then + if [ "$extraArgs" != "" ]; then +- make -f $makefile $extraArgs ++ gmake -f $makefile $extraArgs + else + echo "Building $OS launcher. Defaults: -os $DEFAULT_OS -arch $DEFAULT_OS_ARCH -ws $DEFAULT_WS" +- make -f $makefile clean +- make -f $makefile all ++ gmake -f $makefile clean ++ gmake -f $makefile all + fi + else + echo "Unknown OS ($OS) -- build aborted" diff --git a/java/eclipse/files/patch-features-pde-build b/java/eclipse/files/patch-features-pde-build deleted file mode 100644 index 7bdd9a68275b..000000000000 --- a/java/eclipse/files/patch-features-pde-build +++ /dev/null @@ -1,13 +0,0 @@ ---- features/org.eclipse.pde/build.xml.orig Sun Oct 17 22:15:27 2004 -+++ features/org.eclipse.pde/build.xml Sun Oct 17 22:17:56 2004 -@@ -114,6 +114,10 @@ - </target> - <target name="rootFileslinux_motif_x86"> - </target> -+ <target name="rootFilesfreebsd_gtk_x86"> -+ </target> -+ <target name="rootFilesfreebsd_motif_x86"> -+ </target> - <target name="rootFilessolaris_motif_sparc"> - </target> - <target name="rootFilesaix_motif_ppc"> diff --git a/java/eclipse/files/patch-features-pde-build.xml b/java/eclipse/files/patch-features-pde-build.xml new file mode 100644 index 000000000000..9e18780543c7 --- /dev/null +++ b/java/eclipse/files/patch-features-pde-build.xml @@ -0,0 +1,15 @@ +--- features/org.eclipse.pde/build.xml.orig Sat Feb 19 12:09:30 2005 ++++ features/org.eclipse.pde/build.xml Sat Mar 26 18:33:49 2005 +@@ -116,6 +116,12 @@ + </target> + <target name="rootFileslinux_motif_x86"> + </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ </target> ++ <target name="rootFilesfreebsd_motif_x86"> ++ </target> + <target name="rootFilessolaris_motif_sparc"> + </target> + <target name="rootFilessolaris_gtk_sparc"> diff --git a/java/eclipse/files/patch-features-pde-source-build b/java/eclipse/files/patch-features-pde-source-build deleted file mode 100644 index 92b936b7a515..000000000000 --- a/java/eclipse/files/patch-features-pde-source-build +++ /dev/null @@ -1,13 +0,0 @@ ---- features/org.eclipse.pde.source/build.xml.orig Sun Oct 17 22:21:30 2004 -+++ features/org.eclipse.pde.source/build.xml Sun Oct 17 22:22:08 2004 -@@ -84,6 +84,10 @@ - </target> - <target name="rootFileslinux_motif_x86"> - </target> -+ <target name="rootFilesfreebsd_gtk_x86"> -+ </target> -+ <target name="rootFilesfreebsd_motif_x86"> -+ </target> - <target name="rootFilessolaris_motif_sparc"> - </target> - <target name="rootFilesaix_motif_ppc"> diff --git a/java/eclipse/files/patch-features-pde-source-build.xml b/java/eclipse/files/patch-features-pde-source-build.xml new file mode 100644 index 000000000000..7318f68c0dee --- /dev/null +++ b/java/eclipse/files/patch-features-pde-source-build.xml @@ -0,0 +1,15 @@ +--- features/org.eclipse.pde.source/build.xml.orig Sat Feb 19 12:09:29 2005 ++++ features/org.eclipse.pde.source/build.xml Sat Mar 26 18:34:22 2005 +@@ -86,6 +86,12 @@ + </target> + <target name="rootFileslinux_motif_x86"> + </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ </target> ++ <target name="rootFilesfreebsd_motif_x86"> ++ </target> + <target name="rootFilessolaris_motif_sparc"> + </target> + <target name="rootFilessolaris_gtk_sparc"> diff --git a/java/eclipse/files/patch-features-platform-build b/java/eclipse/files/patch-features-platform-build deleted file mode 100644 index ca72b5390887..000000000000 --- a/java/eclipse/files/patch-features-platform-build +++ /dev/null @@ -1,183 +0,0 @@ ---- features/org.eclipse.platform/build.xml.orig Thu Sep 16 15:45:46 2004 -+++ features/org.eclipse.platform/build.xml Sun Oct 17 22:44:56 2004 -@@ -64,6 +64,11 @@ - </ant> - <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.gtk" target="${target}"> - <property name="arch" value="x86"/> -+ <property name="os" value="freebsd"/> -+ <property name="ws" value="gtk"/> -+ </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.gtk" target="${target}"> -+ <property name="arch" value="x86"/> - <property name="os" value="linux"/> - <property name="ws" value="gtk"/> - </ant> -@@ -104,6 +109,11 @@ - </ant> - <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.motif" target="${target}"> - <property name="arch" value="x86"/> -+ <property name="os" value="freebsd"/> -+ <property name="ws" value="motif"/> -+ </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.motif" target="${target}"> -+ <property name="arch" value="x86"/> - <property name="os" value="linux"/> - <property name="ws" value="motif"/> - </ant> -@@ -192,6 +202,11 @@ - <property name="os" value="win32"/> - <property name="ws" value="win32"/> - </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.update.core.freebsd" target="${target}"> -+ <property name="arch" value="x86"/> -+ <property name="os" value="freebsd"/> -+ <property name="ws" value="motif"/> -+ </ant> - <ant antfile="build.xml" dir="../../plugins/org.eclipse.update.core.linux" target="${target}"> - <property name="arch" value="x86"/> - <property name="os" value="linux"/> -@@ -247,6 +262,11 @@ - <property name="os" value="qnx"/> - <property name="ws" value="photon"/> - </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.resources.freebsd" target="${target}"> -+ <property name="arch" value="x86"/> -+ <property name="os" value="freebsd"/> -+ <property name="ws" value="motif"/> -+ </ant> - <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.resources.linux" target="${target}"> - <property name="arch" value="x86"/> - <property name="os" value="linux"/> -@@ -444,7 +464,85 @@ - <copy todir="${feature.base}/features/org.eclipse.platform_3.0.1" failonerror="true"> - <fileset dir="${basedir}" includes="cpl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" /> - </copy> -- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.apache.ant,1.6.2,org.apache.lucene,1.3.1,org.eclipse.ant.core,3.0.0,org.eclipse.compare,3.0.0,org.eclipse.core.boot,3.0.0,org.eclipse.core.filebuffers,3.0.1,org.eclipse.core.expressions,3.0.0,org.eclipse.core.resources,3.0.1,org.eclipse.core.runtime,3.0.1,org.eclipse.core.runtime.compatibility,3.0.0,org.eclipse.osgi,3.0.1,org.eclipse.osgi.services,3.0.0,org.eclipse.osgi.util,3.0.0,org.eclipse.core.variables,3.0.0,org.eclipse.debug.core,3.0.1,org.eclipse.debug.ui,3.0.1,org.eclipse.help,3.0.0,org.eclipse.help.webapp,3.0.1,org.eclipse.help.base,3.0.1,org.eclipse.help.ui,3.0.0,org.eclipse.help.appserver,3.0.0,org.eclipse.help.ide,3.0.0,org.eclipse.platform,3.0.1,org.eclipse.platform.doc.user,3.0.1,org.eclipse.search,3.0.1,org.eclipse.swt,3.0.1,org.eclipse.team.core,3.0.0,org.eclipse.team.cvs.core,3.0.1,org.eclipse.team.cvs.ssh,3.0.0,org.eclipse.team.cvs.ssh2,3.0.0,org.eclipse.team.cvs.ui,3.0.1,org.eclipse.team.ui,3.0.1,org.eclipse.tomcat,4.1.30,org.eclipse.text,3.0.1,org.eclipse.jface,3.0.0,org.eclipse.jface.text,3.0.1,org.eclipse.ui.console,3.0.0,org.eclipse.ui.presentations.r21,3.0.1,org.eclipse.ui.intro,3.0.1,org.eclipse.ui.cheatsheets,3.0.1,org.eclipse.ui.workbench,3.0.1,org.eclipse.ui.workbench.texteditor,3.0.1,org.eclipse.ui.views,3.0.0,org.eclipse.ui.editors,3.0.1,org.eclipse.ui.forms,3.0.0,org.eclipse.ui,3.0.1,org.eclipse.ui.externaltools,3.0.1,org.eclipse.ui.ide,3.0.1,org.eclipse.update.configurator,3.0.0,org.eclipse.update.core,3.0.1,org.eclipse.update.scheduler,3.0.0,org.eclipse.update.ui,3.0.1,org.eclipse.ui.workbench.compatibility,3.0.0,org.eclipse.swt.motif,3.0.1,org.eclipse.swt.motif,3.0.1,org.eclipse.core.resources.hpux,3.0.0,org.eclipse.swt.gtk,3.0.1,org.eclipse.swt.gtk,3.0.1,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.1,org.eclipse.swt.gtk64,3.0.1,org.eclipse.swt.gtk64,3.0.1,org.eclipse.update.core.linux,3.0.1,org.eclipse.swt.motif,3.0.1,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.1,org.eclipse.swt.carbon,3.0.1,org.eclipse.core.resources.macosx,3.0.0,org.eclipse.ui.carbon,3.0.0,org.eclipse.swt.photon,3.0.1,org.eclipse.core.resources.qnx,3.0.0,org.eclipse.swt.motif,3.0.1,org.eclipse.swt.win32,3.0.1,org.eclipse.core.resources.win32,3.0.0,org.eclipse.ui.win32,3.0.1,org.eclipse.update.core.win32,3.0.0,"/> -+ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds=" -+org.apache.ant,1.6.2, -+org.apache.lucene,1.3.1, -+org.eclipse.ant.core,3.0.0, -+org.eclipse.compare,3.0.0, -+org.eclipse.core.boot,3.0.0, -+org.eclipse.core.filebuffers,3.0.1, -+org.eclipse.core.expressions,3.0.0, -+org.eclipse.core.resources,3.0.1, -+org.eclipse.core.runtime,3.0.1, -+org.eclipse.core.runtime.compatibility,3.0.0, -+org.eclipse.osgi,3.0.1, -+org.eclipse.osgi.services,3.0.0, -+org.eclipse.osgi.util,3.0.0, -+org.eclipse.core.variables,3.0.0, -+org.eclipse.debug.core,3.0.1, -+org.eclipse.debug.ui,3.0.1, -+org.eclipse.help,3.0.0, -+org.eclipse.help.webapp,3.0.1, -+org.eclipse.help.base,3.0.1, -+org.eclipse.help.ui,3.0.0, -+org.eclipse.help.appserver,3.0.0, -+org.eclipse.help.ide,3.0.0, -+org.eclipse.platform,3.0.1, -+org.eclipse.platform.doc.user,3.0.1, -+org.eclipse.search,3.0.1, -+org.eclipse.swt,3.0.1, -+org.eclipse.team.core,3.0.0, -+org.eclipse.team.cvs.core,3.0.1, -+org.eclipse.team.cvs.ssh,3.0.0, -+org.eclipse.team.cvs.ssh2,3.0.0, -+org.eclipse.team.cvs.ui,3.0.1, -+org.eclipse.team.ui,3.0.1, -+org.eclipse.tomcat,4.1.30, -+org.eclipse.text,3.0.1, -+org.eclipse.jface,3.0.0, -+org.eclipse.jface.text,3.0.1, -+org.eclipse.ui.console,3.0.0, -+org.eclipse.ui.presentations.r21,3.0.1, -+org.eclipse.ui.intro,3.0.1, -+org.eclipse.ui.cheatsheets,3.0.1, -+org.eclipse.ui.workbench,3.0.1, -+org.eclipse.ui.workbench.texteditor,3.0.1, -+org.eclipse.ui.views,3.0.0, -+org.eclipse.ui.editors,3.0.1, -+org.eclipse.ui.forms,3.0.0, -+org.eclipse.ui,3.0.1, -+org.eclipse.ui.externaltools,3.0.1, -+org.eclipse.ui.ide,3.0.1, -+org.eclipse.update.configurator,3.0.0, -+org.eclipse.update.core,3.0.1, -+org.eclipse.update.scheduler,3.0.0, -+org.eclipse.update.ui,3.0.1, -+org.eclipse.ui.workbench.compatibility,3.0.0, -+org.eclipse.swt.motif,3.0.1, -+org.eclipse.swt.motif,3.0.1, -+org.eclipse.core.resources.hpux,3.0.0, -+org.eclipse.swt.gtk,3.0.1, -+org.eclipse.swt.gtk,3.0.1, -+org.eclipse.core.resources.freebsd,3.0.0, -+org.eclipse.update.core.freebsd,3.0.1, -+org.eclipse.core.resources.linux,3.0.0, -+org.eclipse.update.core.linux,3.0.1, -+org.eclipse.swt.gtk64,3.0.1, -+org.eclipse.swt.gtk64,3.0.1, -+org.eclipse.update.core.linux,3.0.1, -+org.eclipse.swt.motif,3.0.1, -+org.eclipse.core.resources.linux,3.0.0, -+org.eclipse.update.core.linux,3.0.1, -+org.eclipse.swt.carbon,3.0.1, -+org.eclipse.core.resources.macosx,3.0.0, -+org.eclipse.ui.carbon,3.0.0, -+org.eclipse.swt.photon,3.0.1, -+org.eclipse.core.resources.qnx,3.0.0, -+org.eclipse.swt.motif,3.0.1, -+org.eclipse.swt.win32,3.0.1, -+org.eclipse.core.resources.win32,3.0.0, -+org.eclipse.ui.win32,3.0.1, -+org.eclipse.update.core.win32,3.0.0,"/> - <antcall target="rootFiles${os}_${ws}_${arch}"/> - </target> - <target name="rootFileswin32_win32_x86"> -@@ -496,6 +594,28 @@ - </copy> - <chmod perm="755" dir="${feature.base}/linux.gtk.ia64/${collectingFolder}" includes="eclipse" /> - </target> -+ <target name="rootFilesfreebsd_motif_x86"> -+ <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/> -+ <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true"> -+ <fileset dir="${basedir}/../../plugins/platform-launcher/bin/freebsd/motif" includes="**" /> -+ <fileset dir="${basedir}/freebsd.motif" includes="**" /> -+ <fileset dir="${basedir}/rootfiles" includes="**" /> -+ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> -+ <fileset dir="${basedir}/configuration.files" includes="**" /> -+ </copy> -+ <chmod perm="755" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" includes="*.so*" /> -+ <chmod perm="755" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" includes="eclipse" /> -+ <exec executable="ln" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" os="FreeBSD"> -+ <arg line="-s"/> -+ <arg line="libXm.so.2.1"/> -+ <arg line="libXm.so.2"/> -+ </exec> -+ <exec executable="ln" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" os="FreeBSD"> -+ <arg line="-s"/> -+ <arg line="libXm.so.2.1"/> -+ <arg line="libXm.so"/> -+ </exec> -+ </target> - <target name="rootFileslinux_motif_x86"> - <mkdir dir="${feature.base}/linux.motif.x86/${collectingFolder}"/> - <copy todir="${feature.base}/linux.motif.x86/${collectingFolder}" failonerror="true"> -@@ -517,6 +637,16 @@ - <arg line="libXm.so.2.1"/> - <arg line="libXm.so"/> - </exec> -+ </target> -+ <target name="rootFilesfreebsd_gtk_x86"> -+ <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}"/> -+ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true"> -+ <fileset dir="${basedir}/../../plugins/platform-launcher/bin/freebsd/gtk" includes="**" /> -+ <fileset dir="${basedir}/rootfiles" includes="**" /> -+ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> -+ <fileset dir="${basedir}/configuration.files" includes="**" /> -+ </copy> -+ <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="eclipse" /> - </target> - <target name="rootFilessolaris_motif_sparc"> - <mkdir dir="${feature.base}/solaris.motif.sparc/${collectingFolder}"/> diff --git a/java/eclipse/files/patch-features-platform-build.xml b/java/eclipse/files/patch-features-platform-build.xml new file mode 100644 index 000000000000..02c964e12473 --- /dev/null +++ b/java/eclipse/files/patch-features-platform-build.xml @@ -0,0 +1,97 @@ +--- features/org.eclipse.platform/build.xml.orig Mon Jun 27 21:52:50 2005 ++++ features/org.eclipse.platform/build.xml Thu Jul 14 00:30:56 2005 +@@ -92,6 +92,11 @@ + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.update.core.freebsd" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.resources" target="${target}"> + <property name="arch" value="x86"/> + <property name="os" value="win32"/> +@@ -132,6 +137,11 @@ + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.resources.freebsd" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.resources.win32" target="${target}"> + <property name="arch" value="x86"/> + <property name="os" value="win32"/> +@@ -346,7 +356,7 @@ + <copy todir="${feature.base}/features/org.eclipse.platform_3.1.0" failonerror="true" overwrite="false"> + <fileset dir="${basedir}" includes="epl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" /> + </copy> +- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="org.eclipse.rcp,3.1.0," pluginIds="org.apache.ant,1.6.5,org.apache.lucene,1.4.3,org.eclipse.ant.core,3.1.0,org.eclipse.compare,3.1.0,org.eclipse.core.boot,3.1.0,org.eclipse.core.filebuffers,3.1.0,org.eclipse.core.resources,3.1.0,org.eclipse.core.resources.compatibility,3.1.0,org.eclipse.core.runtime.compatibility,3.1.0,org.eclipse.osgi.services,3.1.0,org.eclipse.osgi.util,3.1.0,org.eclipse.core.variables,3.1.0,org.eclipse.debug.core,3.1.0,org.eclipse.debug.ui,3.1.0,org.eclipse.help.webapp,3.1.0,org.eclipse.help.base,3.1.0,org.eclipse.help.ui,3.1.0,org.eclipse.help.appserver,3.1.0,org.eclipse.ltk.core.refactoring,3.1.0,org.eclipse.ltk.ui.refactoring,3.1.0,org.eclipse.platform,3.1.0,org.eclipse.platform.doc.user,3.1.0,org.eclipse.search,3.1.0,org.eclipse.team.core,3.1.0,org.eclipse.team.cvs.core,3.1.0,org.eclipse.team.cvs.ssh,3.1.0,org.eclipse.team.cvs.ssh2,3.1.0,org.eclipse.team.cvs.ui,3.1.0,org.eclipse.team.ui,3.1.0,org.eclipse.tomcat,4.1.30.1,org.eclipse.text,3.1.0,org.eclipse.jface.text,3.1.0,org.eclipse.ui.console,3.1.0,org.eclipse.ui.presentations.r21,3.1.0,org.eclipse.ui.intro,3.1.0,org.eclipse.ui.cheatsheets,3.1.0,org.eclipse.ui.browser,3.1.0,org.eclipse.ui.workbench.texteditor,3.1.0,org.eclipse.ui.views,3.1.0,org.eclipse.ui.editors,3.1.0,org.eclipse.ui.forms,3.1.0,org.eclipse.ui.externaltools,3.1.0,org.eclipse.ui.ide,3.1.0,org.eclipse.update.core,3.1.0,org.eclipse.update.scheduler,3.1.0,org.eclipse.update.ui,3.1.0,org.eclipse.ui.workbench.compatibility,3.1.0,org.eclipse.core.resources.hpux,3.1.0,org.eclipse.core.resources.linux,3.1.0,org.eclipse.core.resources.macosx,3.1.0,org.eclipse.core.resources.qnx,3.1.0,org.eclipse.core.resources.win32,3.1.0,org.eclipse.ui.carbon,3.1.0,org.eclipse.ui.win32,3.1.0,org.eclipse.update.core.linux,3.1.0,org.eclipse.update.core.win32,3.1.0,"/> ++ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="org.eclipse.rcp,3.1.0," pluginIds="org.apache.ant,1.6.5,org.apache.lucene,1.4.3,org.eclipse.ant.core,3.1.0,org.eclipse.compare,3.1.0,org.eclipse.core.boot,3.1.0,org.eclipse.core.filebuffers,3.1.0,org.eclipse.core.resources,3.1.0,org.eclipse.core.resources.compatibility,3.1.0,org.eclipse.core.runtime.compatibility,3.1.0,org.eclipse.osgi.services,3.1.0,org.eclipse.osgi.util,3.1.0,org.eclipse.core.variables,3.1.0,org.eclipse.debug.core,3.1.0,org.eclipse.debug.ui,3.1.0,org.eclipse.help.webapp,3.1.0,org.eclipse.help.base,3.1.0,org.eclipse.help.ui,3.1.0,org.eclipse.help.appserver,3.1.0,org.eclipse.ltk.core.refactoring,3.1.0,org.eclipse.ltk.ui.refactoring,3.1.0,org.eclipse.platform,3.1.0,org.eclipse.platform.doc.user,3.1.0,org.eclipse.search,3.1.0,org.eclipse.team.core,3.1.0,org.eclipse.team.cvs.core,3.1.0,org.eclipse.team.cvs.ssh,3.1.0,org.eclipse.team.cvs.ssh2,3.1.0,org.eclipse.team.cvs.ui,3.1.0,org.eclipse.team.ui,3.1.0,org.eclipse.tomcat,4.1.30.1,org.eclipse.text,3.1.0,org.eclipse.jface.text,3.1.0,org.eclipse.ui.console,3.1.0,org.eclipse.ui.presentations.r21,3.1.0,org.eclipse.ui.intro,3.1.0,org.eclipse.ui.cheatsheets,3.1.0,org.eclipse.ui.browser,3.1.0,org.eclipse.ui.workbench.texteditor,3.1.0,org.eclipse.ui.views,3.1.0,org.eclipse.ui.editors,3.1.0,org.eclipse.ui.forms,3.1.0,org.eclipse.ui.externaltools,3.1.0,org.eclipse.ui.ide,3.1.0,org.eclipse.update.core,3.1.0,org.eclipse.update.scheduler,3.1.0,org.eclipse.update.ui,3.1.0,org.eclipse.ui.workbench.compatibility,3.1.0,org.eclipse.core.resources.hpux,3.1.0,org.eclipse.core.resources.linux,3.1.0,org.eclipse.core.resources.freebsd,3.1.0,org.eclipse.core.resources.macosx,3.1.0,org.eclipse.core.resources.qnx,3.1.0,org.eclipse.core.resources.win32,3.1.0,org.eclipse.ui.carbon,3.1.0,org.eclipse.ui.win32,3.1.0,org.eclipse.update.core.linux,3.1.0,org.eclipse.update.core.freebsd,3.1.0,org.eclipse.update.core.win32,3.1.0,"/> + <antcall target="rootFiles${os}_${ws}_${arch}"/> + </target> + <target name="rootFileswin32_win32_x86"> +@@ -372,6 +382,19 @@ + <chmod perm="755" dir="${feature.base}/linux.gtk.x86/${collectingFolder}" includes="eclipse" /> + <chmod perm="755" dir="${feature.base}/linux.gtk.x86/${collectingFolder}" includes="*.so*" /> + </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}"/> ++ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true" overwrite="true"> ++ <fileset dir="${basedir}/about_files/freebsd.gtk.x86" includes="**" /> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform.launchers/bin/gtk/freebsd/x86" includes="**" /> ++ <fileset dir="${basedir}/gtk" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.gtk.freebsd.x86" includes="libcairo.so.1" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> ++ </copy> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="eclipse" /> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="*.so*" /> ++ </target> + <target name="rootFileslinux_gtk_ppc"> + <mkdir dir="${feature.base}/linux.gtk.ppc/${collectingFolder}"/> + <copy todir="${feature.base}/linux.gtk.ppc/${collectingFolder}" failonerror="true" overwrite="true"> +@@ -405,6 +428,19 @@ + <chmod perm="755" dir="${feature.base}/linux.gtk.x86_64/${collectingFolder}" includes="eclipse" /> + <chmod perm="755" dir="${feature.base}/linux.gtk.x86_64/${collectingFolder}" includes="*.so*" /> + </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ <mkdir dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}"/> ++ <copy todir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" failonerror="true" overwrite="true"> ++ <fileset dir="${basedir}/about_files/freebsd.gtk.amd64" includes="**" /> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform.launchers/bin/gtk/freebsd/amd64" includes="**" /> ++ <fileset dir="${basedir}/gtk" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.gtk.freebsd.amd64" includes="libcairo.so.1" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> ++ </copy> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" includes="eclipse" /> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" includes="*.so*" /> ++ </target> + <target name="rootFileslinux_gtk_ia64"> + <mkdir dir="${feature.base}/linux.gtk.ia64/${collectingFolder}"/> + <copy todir="${feature.base}/linux.gtk.ia64/${collectingFolder}" failonerror="true" overwrite="true"> +@@ -429,6 +465,21 @@ + </copy> + <chmod perm="755" dir="${feature.base}/linux.motif.x86/${collectingFolder}" includes="eclipse" /> + <chmod perm="755" dir="${feature.base}/linux.motif.x86/${collectingFolder}" includes="*.so*" /> ++ </target> ++ <target name="rootFilesfreebsd_motif_x86"> ++ <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/> ++ <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true" overwrite="true"> ++ <fileset dir="${basedir}/about_files/freebsd.motif.x86" includes="**" /> ++ <fileset dir="${basedir}/motif" includes="**" /> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform.launchers/bin/motif/freebsd/x86" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.motif.freebsd.x86" includes="libXm.so.2" /> ++ <fileset dir="${basedir}/motif" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.motif.freebsd.x86" includes="libcairo.so.1" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> ++ </copy> ++ <chmod perm="755" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" includes="eclipse" /> ++ <chmod perm="755" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" includes="*.so*" /> + </target> + <target name="rootFilessolaris_motif_sparc"> + <mkdir dir="${feature.base}/solaris.motif.sparc/${collectingFolder}"/> diff --git a/java/eclipse/files/patch-features-platform-source-build b/java/eclipse/files/patch-features-platform-source-build deleted file mode 100644 index 68c1f8c96348..000000000000 --- a/java/eclipse/files/patch-features-platform-source-build +++ /dev/null @@ -1,54 +0,0 @@ ---- features/org.eclipse.platform.source/build.xml.orig Sun Oct 17 22:47:16 2004 -+++ features/org.eclipse.platform.source/build.xml Sun Oct 17 22:52:58 2004 -@@ -37,6 +37,16 @@ - <property name="os" value="linux"/> - <property name="ws" value="motif"/> - </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.x86" target="${target}"> -+ <property name="arch" value="x86"/> -+ <property name="os" value="freebsd"/> -+ <property name="ws" value="gtk"/> -+ </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.motif.x86" target="${target}"> -+ <property name="arch" value="x86"/> -+ <property name="os" value="freebsd"/> -+ <property name="ws" value="motif"/> -+ </ant> - <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.macosx.carbon.ppc" target="${target}"> - <property name="arch" value="ppc"/> - <property name="os" value="macosx"/> -@@ -129,7 +139,21 @@ - <copy todir="${feature.base}/features/org.eclipse.platform.source_3.0.1" failonerror="true"> - <fileset dir="${basedir}" includes="cpl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" /> - </copy> -- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.1,org.eclipse.platform.source,3.0.1,org.eclipse.platform.source.linux.gtk.ia64,3.0.1,org.eclipse.platform.source.macosx.carbon.ppc,3.0.1,org.eclipse.platform.source.qnx.photon.x86,3.0.1,org.eclipse.platform.source.linux.gtk.ppc,3.0.1,org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.1,org.eclipse.platform.source.aix.motif.ppc,3.0.1,org.eclipse.platform.source.linux.gtk.x86,3.0.1,org.eclipse.platform.source.win32.win32.x86,3.0.1,org.eclipse.platform.source.solaris.motif.sparc,3.0.1,org.eclipse.platform.source.linux.gtk.amd64,3.0.1,org.eclipse.platform.source.linux.motif.x86,3.0.1,"/> -+ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.1, -+org.eclipse.platform.source,3.0.1, -+org.eclipse.platform.source.linux.gtk.ia64,3.0.1, -+org.eclipse.platform.source.macosx.carbon.ppc,3.0.1, -+org.eclipse.platform.source.qnx.photon.x86,3.0.1, -+org.eclipse.platform.source.linux.gtk.ppc,3.0.1, -+org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.1, -+org.eclipse.platform.source.aix.motif.ppc,3.0.1, -+org.eclipse.platform.source.linux.gtk.x86,3.0.1, -+org.eclipse.platform.source.freebsd.gtk.x86,3.0.1, -+org.eclipse.platform.source.win32.win32.x86,3.0.1, -+org.eclipse.platform.source.solaris.motif.sparc,3.0.1, -+org.eclipse.platform.source.linux.gtk.amd64,3.0.1, -+org.eclipse.platform.source.linux.motif.x86,3.0.1, -+org.eclipse.platform.source.freebsd.motif.x86,3.0.1,"/> - <antcall target="rootFiles${os}_${ws}_${arch}"/> - </target> - <target name="rootFileswin32_win32_x86"> -@@ -154,6 +178,11 @@ - </target> - <target name="rootFilesqnx_photon_x86"> - </target> -+ <target name="rootFilesfreebsd_gtk_x86"> -+ </target> -+ <target name="rootFilesfreebsd_motif_x86"> -+ </target> -+ - - <target name="zip.distribution" depends="init" description="Create a zip containing all the plug-ins and features for the feature: org.eclipse.platform.source."> - <delete dir="${feature.temp.folder}"/> diff --git a/java/eclipse/files/patch-features-platform-source-build.xml b/java/eclipse/files/patch-features-platform-source-build.xml new file mode 100644 index 000000000000..3eb8270a1802 --- /dev/null +++ b/java/eclipse/files/patch-features-platform-source-build.xml @@ -0,0 +1,66 @@ +--- features/org.eclipse.platform.source/build.xml.orig Mon Jun 27 21:52:51 2005 ++++ features/org.eclipse.platform.source/build.xml Thu Jul 14 00:45:53 2005 +@@ -57,11 +57,21 @@ + <property name="os" value="linux"/> + <property name="ws" value="motif"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.motif.x86" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="motif"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.linux.gtk.x86" target="${target}"> + <property name="arch" value="x86"/> + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.x86" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.hpux.motif.PA_RISC" target="${target}"> + <property name="arch" value="PA_RISC"/> + <property name="os" value="hpux"/> +@@ -72,6 +82,11 @@ + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.amd64" target="${target}"> ++ <property name="arch" value="amd64"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.doc.isv" target="${target}"> + <property name="arch" value="x86"/> + <property name="os" value="win32"/> +@@ -136,22 +151,28 @@ + <copy todir="${feature.base}/features/org.eclipse.platform.source_3.1.0" failonerror="true" overwrite="false"> + <fileset dir="${basedir}" includes="epl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" /> + </copy> +- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="org.eclipse.rcp.source,3.1.0," pluginIds="org.eclipse.platform.doc.isv,3.1.0,org.eclipse.platform.source,3.1.0,org.eclipse.platform.source.linux.gtk.ia64,3.1.0,org.eclipse.platform.source.hpux.motif.ia64_32,3.1.0,org.eclipse.platform.source.qnx.photon.x86,3.1.0,org.eclipse.platform.source.linux.gtk.ppc,3.1.0,org.eclipse.platform.source.hpux.motif.PA_RISC,3.1.0,org.eclipse.platform.source.hpux.motif.ia64,3.1.0,org.eclipse.platform.source.linux.gtk.x86_64,3.1.0,org.eclipse.platform.source.linux.gtk.ppc64,3.1.0,org.eclipse.platform.source.macosx.carbon.ppc,3.1.0,org.eclipse.platform.source.linux.gtk.x86,3.1.0,org.eclipse.platform.source.win32.win32.x86,3.1.0,org.eclipse.platform.source.linux.motif.x86,3.1.0,"/> ++ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="org.eclipse.rcp.source,3.1.0," pluginIds="org.eclipse.platform.doc.isv,3.1.0,org.eclipse.platform.source,3.1.0,org.eclipse.platform.source.linux.gtk.ia64,3.1.0,org.eclipse.platform.source.hpux.motif.ia64_32,3.1.0,org.eclipse.platform.source.qnx.photon.x86,3.1.0,org.eclipse.platform.source.linux.gtk.ppc,3.1.0,org.eclipse.platform.source.hpux.motif.PA_RISC,3.1.0,org.eclipse.platform.source.hpux.motif.ia64,3.1.0,org.eclipse.platform.source.linux.gtk.x86_64,3.1.0,org.eclipse.platform.source.freebsd.gtk.amd64,3.1.0,org.eclipse.platform.source.linux.gtk.ppc64,3.1.0,org.eclipse.platform.source.macosx.carbon.ppc,3.1.0,org.eclipse.platform.source.linux.gtk.x86,3.1.0,org.eclipse.platform.source.freebsd.gtk.x86,3.1.0,org.eclipse.platform.source.win32.win32.x86,3.1.0,org.eclipse.platform.source.linux.motif.x86,3.1.0,org.eclipse.platform.source.freebsd.motif.x86,3.1.0,"/> + <antcall target="rootFiles${os}_${ws}_${arch}"/> + </target> + <target name="rootFileswin32_win32_x86"> + </target> + <target name="rootFileslinux_gtk_x86"> + </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ </target> + <target name="rootFileslinux_gtk_ppc"> + </target> + <target name="rootFileslinux_gtk_ppc64"> + </target> + <target name="rootFileslinux_gtk_x86_64"> + </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ </target> + <target name="rootFileslinux_gtk_ia64"> + </target> + <target name="rootFileslinux_motif_x86"> ++ </target> ++ <target name="rootFilesfreebsd_motif_x86"> + </target> + <target name="rootFilessolaris_motif_sparc"> + </target> diff --git a/java/eclipse/files/patch-features-platform-source-feature b/java/eclipse/files/patch-features-platform-source-feature deleted file mode 100644 index b4a1b73ebee0..000000000000 --- a/java/eclipse/files/patch-features-platform-source-feature +++ /dev/null @@ -1,9 +0,0 @@ ---- features/org.eclipse.platform.source/feature.xml.orig Sun Oct 17 22:47:27 2004 -+++ features/org.eclipse.platform.source/feature.xml Sun Oct 17 22:57:32 2004 -@@ -23,4 +23,6 @@ - <plugin ws="motif" os="solaris" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.platform.source.solaris.motif.sparc" version="3.0.1"/> - <plugin ws="gtk" os="linux" fragment="true" arch="amd64" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.amd64" version="3.0.1"/> - <plugin ws="motif" os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.motif.x86" version="3.0.1"/> -+ <plugin ws="motif" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.motif.x86" version="3.0.1"/> -+ <plugin ws="gtk" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.gtk.x86" version="3.0.1"/> - </feature> diff --git a/java/eclipse/files/patch-features-platform-source-feature.xml b/java/eclipse/files/patch-features-platform-source-feature.xml new file mode 100644 index 000000000000..04d17e6eecfa --- /dev/null +++ b/java/eclipse/files/patch-features-platform-source-feature.xml @@ -0,0 +1,15 @@ +--- features/org.eclipse.platform.source/feature.xml.orig Mon Jun 27 21:52:50 2005 ++++ features/org.eclipse.platform.source/feature.xml Thu Jul 14 00:54:19 2005 +@@ -20,9 +20,12 @@ + <plugin ws="motif" os="hpux" fragment="true" arch="PA_RISC" download-size="0" install-size="0" id="org.eclipse.platform.source.hpux.motif.PA_RISC" version="3.1.0"/> + <plugin ws="motif" os="hpux" fragment="true" arch="ia64" download-size="0" install-size="0" id="org.eclipse.platform.source.hpux.motif.ia64" version="3.1.0"/> + <plugin ws="gtk" os="linux" fragment="true" arch="x86_64" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.x86_64" version="3.1.0"/> ++ <plugin ws="gtk" os="freebsd" fragment="true" arch="amd64" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.gtk.amd64" version="3.1.0"/> + <plugin ws="gtk" os="linux" fragment="true" arch="ppc64" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.ppc64" version="3.1.0"/> + <plugin ws="carbon" os="macosx" fragment="true" arch="ppc" download-size="0" install-size="0" id="org.eclipse.platform.source.macosx.carbon.ppc" version="3.1.0"/> + <plugin ws="gtk" os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.x86" version="3.1.0"/> ++ <plugin ws="gtk" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.gtk.x86" version="3.1.0"/> + <plugin ws="win32" os="win32" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.win32.win32.x86" version="3.1.0"/> + <plugin ws="motif" os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.motif.x86" version="3.1.0"/> ++ <plugin ws="motif" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.motif.x86" version="3.1.0"/> + </feature> diff --git a/java/eclipse/files/patch-features-rcp-build.xml b/java/eclipse/files/patch-features-rcp-build.xml new file mode 100644 index 000000000000..6e257a9bac70 --- /dev/null +++ b/java/eclipse/files/patch-features-rcp-build.xml @@ -0,0 +1,108 @@ +--- features/org.eclipse.rcp/build.xml.orig Mon Jun 27 21:52:51 2005 ++++ features/org.eclipse.rcp/build.xml Fri Jul 15 00:34:31 2005 +@@ -37,6 +37,11 @@ + <property name="os" value="linux"/> + <property name="ws" value="motif"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.motif.freebsd.x86" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="motif"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.motif.hpux.ia64_32" target="${target}"> + <property name="arch" value="ia64_32"/> + <property name="os" value="hpux"/> +@@ -72,6 +77,11 @@ + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.gtk.freebsd.x86" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.motif.aix.ppc" target="${target}"> + <property name="arch" value="ppc"/> + <property name="os" value="aix"/> +@@ -82,6 +92,11 @@ + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.gtk.freebsd.amd64" target="${target}"> ++ <property name="arch" value="amd64"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.gtk.linux.ia64" target="${target}"> + <property name="arch" value="ia64"/> + <property name="os" value="linux"/> +@@ -185,7 +200,7 @@ + <copy todir="${feature.base}/features/org.eclipse.rcp_3.1.0" failonerror="true" overwrite="false"> + <fileset dir="${basedir}" includes="feature.xml,license.html,epl-v10.html,feature.properties,eclipse_update_120.jpg" /> + </copy> +- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.rcp_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="" pluginIds="org.eclipse.core.commands,3.1.0,org.eclipse.core.expressions,3.1.0,org.eclipse.core.runtime,3.1.0,org.eclipse.osgi,3.1.0,org.eclipse.help,3.1.0,org.eclipse.swt,3.1.0,org.eclipse.jface,3.1.0,org.eclipse.ui,3.1.0,org.eclipse.ui.workbench,3.1.0,org.eclipse.update.configurator,3.1.0,org.eclipse.swt.win32.win32.x86,3.1.0,org.eclipse.swt.gtk.linux.x86,3.1.0,org.eclipse.swt.gtk.solaris.sparc,3.1.0,org.eclipse.swt.gtk.linux.ppc,3.1.0,org.eclipse.swt.gtk.linux.x86_64,3.1.0,org.eclipse.swt.carbon.macosx.ppc,3.1.0,org.eclipse.swt.motif.aix.ppc,3.1.0,org.eclipse.swt.motif.hpux.PA_RISC,3.1.0,org.eclipse.swt.motif.linux.x86,3.1.0,org.eclipse.swt.gtk.linux.ia64,3.1.0,org.eclipse.swt.motif.solaris.sparc,3.1.0,org.eclipse.swt.photon.qnx.x86,3.1.0,org.eclipse.swt.motif.hpux.ia64_32,3.1.0,org.eclipse.rcp,3.1.0,"/> ++ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.rcp_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="" pluginIds="org.eclipse.core.commands,3.1.0,org.eclipse.core.expressions,3.1.0,org.eclipse.core.runtime,3.1.0,org.eclipse.osgi,3.1.0,org.eclipse.help,3.1.0,org.eclipse.swt,3.1.0,org.eclipse.jface,3.1.0,org.eclipse.ui,3.1.0,org.eclipse.ui.workbench,3.1.0,org.eclipse.update.configurator,3.1.0,org.eclipse.swt.win32.win32.x86,3.1.0,org.eclipse.swt.gtk.linux.x86,3.1.0,org.eclipse.swt.gtk.freebsd.x86,3.1.0,org.eclipse.swt.gtk.solaris.sparc,3.1.0,org.eclipse.swt.gtk.linux.ppc,3.1.0,org.eclipse.swt.gtk.linux.x86_64,3.1.0,org.eclipse.swt.gtk.freebsd.amd64,3.1.0,org.eclipse.swt.carbon.macosx.ppc,3.1.0,org.eclipse.swt.motif.aix.ppc,3.1.0,org.eclipse.swt.motif.hpux.PA_RISC,3.1.0,org.eclipse.swt.motif.linux.x86,3.1.0,org.eclipse.swt.motif.freebsd.x86,3.1.0,org.eclipse.swt.gtk.linux.ia64,3.1.0,org.eclipse.swt.motif.solaris.sparc,3.1.0,org.eclipse.swt.photon.qnx.x86,3.1.0,org.eclipse.swt.motif.hpux.ia64_32,3.1.0,org.eclipse.rcp,3.1.0,"/> + <antcall target="rootFiles${os}_${ws}_${arch}"/> + </target> + <target name="rootFileswin32_win32_x86"> +@@ -211,6 +226,19 @@ + <chmod perm="755" dir="${feature.base}/linux.gtk.x86/${collectingFolder}" includes="eclipse" /> + <chmod perm="755" dir="${feature.base}/linux.gtk.x86/${collectingFolder}" includes="*.so*" /> + </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}"/> ++ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true" overwrite="true"> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform/about_files/freebsd.gtk.x86" includes="**" /> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform.launchers/bin/gtk/freebsd/x86" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.gtk.freebsd.x86" includes="libcairo.so.1" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../org.eclipse.platform/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> ++ </copy> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="eclipse" /> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="*.so*" /> ++ </target> + <target name="rootFileslinux_gtk_ppc"> + <mkdir dir="${feature.base}/linux.gtk.ppc/${collectingFolder}"/> + <copy todir="${feature.base}/linux.gtk.ppc/${collectingFolder}" failonerror="true" overwrite="true"> +@@ -243,6 +271,19 @@ + <chmod perm="755" dir="${feature.base}/linux.gtk.x86_64/${collectingFolder}" includes="eclipse" /> + <chmod perm="755" dir="${feature.base}/linux.gtk.x86_64/${collectingFolder}" includes="*.so*" /> + </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ <mkdir dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}"/> ++ <copy todir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" failonerror="true" overwrite="true"> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform/about_files/freebsd.gtk.amd64" includes="**" /> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform.launchers/bin/gtk/freebsd/amd64" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.gtk.freebsd.amd64" includes="libcairo.so.1" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../org.eclipse.platform/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> ++ </copy> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" includes="eclipse" /> ++ <chmod perm="755" dir="${feature.base}/freebsd.gtk.amd64/${collectingFolder}" includes="*.so*" /> ++ </target> + <target name="rootFileslinux_gtk_ia64"> + <mkdir dir="${feature.base}/linux.gtk.ia64/${collectingFolder}"/> + <copy todir="${feature.base}/linux.gtk.ia64/${collectingFolder}" failonerror="true" overwrite="true"> +@@ -266,6 +307,20 @@ + </copy> + <chmod perm="755" dir="${feature.base}/linux.motif.x86/${collectingFolder}" includes="eclipse" /> + <chmod perm="755" dir="${feature.base}/linux.motif.x86/${collectingFolder}" includes="*.so*" /> ++ </target> ++ <target name="rootFilesfreebsd_motif_x86"> ++ <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/> ++ <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true" overwrite="true"> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform/about_files/freebsd.motif.x86" includes="**" /> ++ <fileset dir="${basedir}/../../features/org.eclipse.platform.launchers/bin/motif/freebsd/x86" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.motif.freebsd.x86" includes="libXm.so.2" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.swt.motif.freebsd.x86" includes="libcairo.so.1" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../org.eclipse.platform/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/../../plugins/org.eclipse.platform" includes="startup.jar" /> ++ </copy> ++ <chmod perm="755" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" includes="eclipse" /> ++ <chmod perm="755" dir="${feature.base}/freebsd.motif.x86/${collectingFolder}" includes="*.so*" /> + </target> + <target name="rootFilessolaris_motif_sparc"> + <mkdir dir="${feature.base}/solaris.motif.sparc/${collectingFolder}"/> diff --git a/java/eclipse/files/patch-features-rcp-source-build.xml b/java/eclipse/files/patch-features-rcp-source-build.xml new file mode 100644 index 000000000000..dcead525d938 --- /dev/null +++ b/java/eclipse/files/patch-features-rcp-source-build.xml @@ -0,0 +1,66 @@ +--- features/org.eclipse.rcp.source/build.xml.orig Mon Jun 27 21:52:50 2005 ++++ features/org.eclipse.rcp.source/build.xml Fri Jul 15 00:40:07 2005 +@@ -17,6 +17,11 @@ + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.rcp.source.freebsd.gtk.amd64" target="${target}"> ++ <property name="arch" value="amd64"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.rcp.source.macosx.carbon.ppc" target="${target}"> + <property name="arch" value="ppc"/> + <property name="os" value="macosx"/> +@@ -67,11 +72,21 @@ + <property name="os" value="linux"/> + <property name="ws" value="motif"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.rcp.source.freebsd.motif.x86" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="motif"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.rcp.source.linux.gtk.x86" target="${target}"> + <property name="arch" value="x86"/> + <property name="os" value="linux"/> + <property name="ws" value="gtk"/> + </ant> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.rcp.source.freebsd.gtk.x86" target="${target}"> ++ <property name="arch" value="x86"/> ++ <property name="os" value="freebsd"/> ++ <property name="ws" value="gtk"/> ++ </ant> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.rcp.source.solaris.gtk.sparc" target="${target}"> + <property name="arch" value="sparc"/> + <property name="os" value="solaris"/> +@@ -135,22 +150,28 @@ + <copy todir="${feature.base}/features/org.eclipse.rcp.source_3.1.0" failonerror="true" overwrite="false"> + <fileset dir="${basedir}" includes="epl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" /> + </copy> +- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.rcp.source_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="" pluginIds="org.eclipse.rcp.source,3.1.0,org.eclipse.rcp.source.hpux.motif.ia64_32,3.1.0,org.eclipse.rcp.source.linux.gtk.ia64,3.1.0,org.eclipse.rcp.source.qnx.photon.x86,3.1.0,org.eclipse.rcp.source.linux.gtk.ppc,3.1.0,org.eclipse.rcp.source.hpux.motif.PA_RISC,3.1.0,org.eclipse.rcp.source.linux.gtk.x86_64,3.1.0,org.eclipse.rcp.source.solaris.gtk.sparc,3.1.0,org.eclipse.rcp.source.macosx.carbon.ppc,3.1.0,org.eclipse.rcp.source.linux.gtk.x86,3.1.0,org.eclipse.rcp.source.aix.motif.ppc,3.1.0,org.eclipse.rcp.source.win32.win32.x86,3.1.0,org.eclipse.rcp.source.solaris.motif.sparc,3.1.0,org.eclipse.rcp.source.linux.motif.x86,3.1.0,"/> ++ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.rcp.source_3.1.0/feature.xml" selfVersion="3.1.0" featureIds="" pluginIds="org.eclipse.rcp.source,3.1.0,org.eclipse.rcp.source.hpux.motif.ia64_32,3.1.0,org.eclipse.rcp.source.linux.gtk.ia64,3.1.0,org.eclipse.rcp.source.qnx.photon.x86,3.1.0,org.eclipse.rcp.source.linux.gtk.ppc,3.1.0,org.eclipse.rcp.source.hpux.motif.PA_RISC,3.1.0,org.eclipse.rcp.source.linux.gtk.x86_64,3.1.0,org.eclipse.rcp.source.freebsd.gtk.amd64,3.1.0,org.eclipse.rcp.source.solaris.gtk.sparc,3.1.0,org.eclipse.rcp.source.macosx.carbon.ppc,3.1.0,org.eclipse.rcp.source.linux.gtk.x86,3.1.0,org.eclipse.rcp.source.freebsd.gtk.x86,3.1.0,org.eclipse.rcp.source.aix.motif.ppc,3.1.0,org.eclipse.rcp.source.win32.win32.x86,3.1.0,org.eclipse.rcp.source.solaris.motif.sparc,3.1.0,org.eclipse.rcp.source.linux.motif.x86,3.1.0,org.eclipse.rcp.source.freebsd.motif.x86,3.1.0,"/> + <antcall target="rootFiles${os}_${ws}_${arch}"/> + </target> + <target name="rootFileswin32_win32_x86"> + </target> + <target name="rootFileslinux_gtk_x86"> + </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ </target> + <target name="rootFileslinux_gtk_ppc"> + </target> + <target name="rootFileslinux_gtk_ppc64"> + </target> + <target name="rootFileslinux_gtk_x86_64"> + </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ </target> + <target name="rootFileslinux_gtk_ia64"> + </target> + <target name="rootFileslinux_motif_x86"> ++ </target> ++ <target name="rootFilesfreebsd_motif_x86"> + </target> + <target name="rootFilessolaris_motif_sparc"> + </target> diff --git a/java/eclipse/files/patch-features-sdk-build b/java/eclipse/files/patch-features-sdk-build deleted file mode 100644 index 2ac5502e68d2..000000000000 --- a/java/eclipse/files/patch-features-sdk-build +++ /dev/null @@ -1,29 +0,0 @@ ---- features/org.eclipse.sdk/build.xml.orig Sat Jun 12 01:24:16 2004 -+++ features/org.eclipse.sdk/build.xml Sun Jun 20 12:36:26 2004 -@@ -84,6 +84,13 @@ - <fileset dir="${basedir}/../org.eclipse.platform/configuration.files" includes="**" /> - </copy> - </target> -+ <target name="rootFilesfreebsd_motif_x86"> -+ <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/> -+ <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true"> -+ <fileset dir="${basedir}/../org.eclipse.platform/rootfiles" includes="**" /> -+ <fileset dir="${basedir}/../org.eclipse.platform/configuration.files" includes="**" /> -+ </copy> -+ </target> - <target name="rootFileslinux_motif_x86"> - <mkdir dir="${feature.base}/linux.motif.x86/${collectingFolder}"/> - <copy todir="${feature.base}/linux.motif.x86/${collectingFolder}" failonerror="true"> -@@ -103,6 +110,12 @@ - <copy todir="${feature.base}/linux.gtk.ppc/${collectingFolder}" failonerror="true"> - <fileset dir="${basedir}/../org.eclipse.platform/rootfiles" includes="**" /> - <fileset dir="${basedir}/../org.eclipse.platform/configuration.files" includes="**" /> -+ </copy> -+ </target> -+ <target name="rootFilesfreebsd_gtk_x86"> -+ <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}"/> -+ <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true"> -+ <fileset dir="${basedir}/../org.eclipse.platform/rootfiles" includes="**" /> - </copy> - </target> - <target name="rootFileslinux_gtk_amd64"> diff --git a/java/eclipse/files/patch-features-sdk-build.xml b/java/eclipse/files/patch-features-sdk-build.xml new file mode 100644 index 000000000000..2217569febc1 --- /dev/null +++ b/java/eclipse/files/patch-features-sdk-build.xml @@ -0,0 +1,15 @@ +--- features/org.eclipse.sdk/build.xml.orig Sat Feb 19 12:09:35 2005 ++++ features/org.eclipse.sdk/build.xml Sat Mar 26 18:40:52 2005 +@@ -90,6 +90,12 @@ + </target> + <target name="rootFileslinux_gtk_x86_64"> + </target> ++ <target name="rootFilesfreebsd_gtk_amd64"> ++ </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ </target> ++ <target name="rootFilesfreebsd_motif_x86"> ++ </target> + <target name="rootFileslinux_motif_x86"> + </target> + <target name="rootFilessolaris_motif_sparc"> diff --git a/java/eclipse/files/patch-launcher-gtk-build.csh b/java/eclipse/files/patch-launcher-gtk-build.csh deleted file mode 100644 index 54bdb920dd0b..000000000000 --- a/java/eclipse/files/patch-launcher-gtk-build.csh +++ /dev/null @@ -1,17 +0,0 @@ ---- plugins/platform-launcher/library/gtk/build.csh.orig Sun Jun 13 22:33:13 2004 -+++ plugins/platform-launcher/library/gtk/build.csh Sun Jun 13 22:33:39 2004 -@@ -72,11 +72,11 @@ - # If the OS is supported (a makefile exists) - if ("$makefile" != "") then - if ("$extraArgs" != "") then -- make -f $makefile $extraArgs -+ gmake -f $makefile $extraArgs - else - echo "Building $OS launcher. Defaults: -os $DEFAULT_OS -arch $DEFAULT_OS_ARCH -ws $DEFAULT_WS" -- make -f $makefile clean -- make -f $makefile all -+ gmake -f $makefile clean -+ gmake -f $makefile all - endif - else - echo "Unknown OS ($OS) -- build aborted" diff --git a/java/eclipse/files/patch-launcher-make_gtk.mak b/java/eclipse/files/patch-launcher-make_gtk.mak deleted file mode 100644 index 66533fd3a983..000000000000 --- a/java/eclipse/files/patch-launcher-make_gtk.mak +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/platform-launcher/library/gtk/make_gtk.mak.orig Sun Jun 13 22:31:21 2004 -+++ plugins/platform-launcher/library/gtk/make_gtk.mak Sun Jun 13 22:31:38 2004 -@@ -26,7 +26,7 @@ - # Define the object modules to be compiled and flags. - OBJS = eclipse.o eclipseUtil.o eclipseShm.o eclipseGtk.o - EXEC = $(PROGRAM_OUTPUT) --LIBS = `pkg-config ?libs-only-L gtk+-2.0` -lgtk-x11-2.0 -lgdk_pixbuf-2.0 -+LIBS = `pkg-config --libs-only-L gtk+-2.0` -lgtk-x11-2.0 -lgdk_pixbuf-2.0 - - CFLAGS = -O -s \ - -DMOZILLA_FIX \ diff --git a/java/eclipse/files/patch-launcher-motif-build.csh b/java/eclipse/files/patch-launcher-motif-build.csh deleted file mode 100644 index d041278b42d5..000000000000 --- a/java/eclipse/files/patch-launcher-motif-build.csh +++ /dev/null @@ -1,31 +0,0 @@ ---- plugins/platform-launcher/library/motif/build.csh.orig Sun Jun 20 12:38:06 2004 -+++ plugins/platform-launcher/library/motif/build.csh Sun Jun 20 12:40:27 2004 -@@ -48,6 +48,13 @@ - set defaultWS = "motif" - breaksw - -+ case FreeBSD: -+ set makefile = "make_freebsd.mak" -+ set defaultOS = "freebsd" -+ set defaultOSArch = "x86" -+ set defaultWS = "motif" -+ breaksw -+ - case Linux: - set makefile = "make_linux.mak" - set defaultOS = "linux" -@@ -120,11 +127,11 @@ - # If the OS is supported (a makefile exists) - if ("$makefile" != "") then - if ("$extraArgs" != "") then -- make -f $makefile $extraArgs -+ gmake -f $makefile $extraArgs - else - echo "Building $OS launcher. Defaults: -os $DEFAULT_OS -arch $DEFAULT_OS_ARCH -ws $DEFAULT_WS" -- make -f $makefile clean -- make -f $makefile all -+ gmake -f $makefile clean -+ gmake -f $makefile all - endif - else - echo "Unknown OS ($OS) -- build aborted" diff --git a/java/eclipse/files/patch-launcher-motif-make_linux.mak b/java/eclipse/files/patch-launcher-motif-make_linux.mak deleted file mode 100644 index 949e93722cae..000000000000 --- a/java/eclipse/files/patch-launcher-motif-make_linux.mak +++ /dev/null @@ -1,11 +0,0 @@ ---- plugins/platform-launcher/library/motif/make_linux.mak.orig Sun Jun 20 12:51:29 2004 -+++ plugins/platform-launcher/library/motif/make_linux.mak Sun Jun 20 12:53:01 2004 -@@ -21,7 +21,7 @@ - # X11_HOME - X11 includes and libraries - # MOTIF_HOME - Motif include and libraries if not the same as X11_HOME - X11_HOME = /usr/X11R6 --MOTIF_HOME = /bluebird/teamswt/swt-builddir/motif21 -+MOTIF_HOME = $(X11_HOME) - - # Define the object modules to be compiled and flags. - OBJS = eclipse.o eclipseUtil.o eclipseShm.o eclipseMotif.o \ diff --git a/java/eclipse/files/patch-plugins-core-build.xml b/java/eclipse/files/patch-plugins-core-build.xml new file mode 100644 index 000000000000..42dfac0c7320 --- /dev/null +++ b/java/eclipse/files/patch-plugins-core-build.xml @@ -0,0 +1,53 @@ +--- plugins/org.eclipse.core.resources.freebsd/build.xml.orig Wed Jul 27 09:39:39 2005 ++++ plugins/org.eclipse.core.resources.freebsd/build.xml Wed Jul 27 22:09:53 2005 +@@ -19,6 +19,20 @@ + </fileset> + </path> + <property name="bootclasspath" refid="path_bootclasspath"/> ++ <!-- The properties ${eclipse-home} ${jdk-path} should be passed into this script --> ++ <!-- Set a meaningful default value for when it is not. --> ++ <property name="eclipse-home" value="${basedir}/.."/> ++ <property environment="env" /> ++ <property name="CC" value="${env.CC}"/> ++ <property name="jdk-path" value="${env.JAVA_HOME}"/> ++ <property name="destination" value="${eclipse-home}/org.eclipse.core.resources.freebsd/os/freebsd/x86/"/> ++ <property name="obj-path" value="${eclipse-home}/org.eclipse.core.resources/src/"/> ++ <property name="src-path" value="${eclipse-home}/org.eclipse.core.resources.freebsd/src/"/> ++ ++ <!-- sets the properties --> ++ <property name="library-name" value="libcore_3_1_0"/> ++ <property name="library-platform" value="so"/> ++ <property name="library-file" value="${library-name}.${library-platform}"/> + + <target name="init" depends="properties"> + <condition property="pluginTemp" value="${buildTempFolder}/plugins"> +@@ -50,6 +64,29 @@ + </target> + + <target name="build.jars" depends="init" description="Build all the jars for the plug-in: org.eclipse.core.resources.freebsd."> ++ <echo message="Building ${library-file}"/> ++ ++ <property name="header-path" value="${jdk-path}/include"/> ++ <property name="header-freebsd-path" value="${header-path}/freebsd" /> ++ ++ <echo message="${CC} -o ${library-file} -shared -fPIC -I${src-path} -I${header-path} -I${header-freebsd-path} ${library-file} -static -lc"/> ++ ++ <apply executable="${CC}" dest="${eclipse-home}/" parallel="false"> ++ <arg value="-o"/> ++ <arg value="${library-file}"/> ++ <arg value="-shared"/> ++ <arg value="-fPIC"/> ++ <arg value="-I${src-path}"/> ++ <arg value="-I${header-path}"/> ++ <arg value="-I${header-freebsd-path}"/> ++ <srcfile/> ++ <arg value="-static"/> ++ <arg value="-lc"/> ++ <fileset dir="${src-path}" includes="*.c"/> ++ <mapper type="glob" from="*.c" to="*.o"/> ++ </apply> ++ ++ <move file="${library-file}" todir="${destination}"/> + </target> + + <target name="build.sources" depends="init"> diff --git a/java/eclipse/files/patch-plugins-swt-gtk-build b/java/eclipse/files/patch-plugins-swt-gtk-build deleted file mode 100644 index 8fb309c988ff..000000000000 --- a/java/eclipse/files/patch-plugins-swt-gtk-build +++ /dev/null @@ -1,18 +0,0 @@ ---- plugins/org.eclipse.swt.gtk/build.xml.orig Wed Apr 21 00:24:26 2004 -+++ plugins/org.eclipse.swt.gtk/build.xml Wed Apr 21 00:24:39 2004 -@@ -10,7 +10,7 @@ - <property name="build.result.folder" value="${basedir}"/> - <property name="plugindir" value="../org.eclipse.swt"/> - <property name="destination" value="${basedir}"/> -- <property name="os" value="linux"/> -+ <property name="os" value="${os}"/> - <property name="ws" value="gtk"/> - <property name="arch" value="x86"/> - <property name="bootclasspath" value=""/> -@@ -291,4 +291,4 @@ - <delete dir="${temp.folder}"/> - </target> - --</project> -\ No newline at end of file -+</project> diff --git a/java/eclipse/files/patch-plugins-swt-motif-build b/java/eclipse/files/patch-plugins-swt-motif-build deleted file mode 100644 index e016d66d6f4f..000000000000 --- a/java/eclipse/files/patch-plugins-swt-motif-build +++ /dev/null @@ -1,18 +0,0 @@ ---- plugins/org.eclipse.swt.motif/build.xml.orig Sun Jun 20 12:55:20 2004 -+++ plugins/org.eclipse.swt.motif/build.xml Sun Jun 20 12:56:39 2004 -@@ -10,7 +10,7 @@ - <property name="build.result.folder" value="${basedir}"/> - <property name="plugindir" value="../org.eclipse.swt"/> - <property name="destination" value="${basedir}"/> -- <property name="os" value="linux"/> -+ <property name="os" value="${os}"/> - <property name="ws" value="motif"/> - <property name="arch" value="x86"/> - <property name="bootclasspath" value=""/> -@@ -315,4 +315,4 @@ - <delete dir="${temp.folder}"/> - </target> - --</project> -\ No newline at end of file -+</project> diff --git a/java/eclipse/files/patch-plugins-update-src-build.xml b/java/eclipse/files/patch-plugins-update-src-build.xml new file mode 100644 index 000000000000..1fa5cb7ccbd2 --- /dev/null +++ b/java/eclipse/files/patch-plugins-update-src-build.xml @@ -0,0 +1,31 @@ +--- plugins/org.eclipse.update.core.freebsd/src/build.xml Sat Apr 9 14:03:21 2005 ++++ ../files/plugins-update-src-build.xml Tue Feb 15 23:41:47 2005 +@@ -6,7 +6,7 @@ + <property name="eclipse-home" value="${basedir}/../.."/> + <property name="jdk-path" value="${java.home}"/> + <property name="destination" value="${eclipse-home}/org.eclipse.update.core.freebsd/os/freebsd/x86/"/> +- <property name="obj-path" value="${eclipse-home}/org.eclipse.update.core.freebsd/src/"/> ++ <property name="obj-path" value="${eclipse-home}/org.eclipse.update.core/src/"/> + <property name="src-path" value="${eclipse-home}/org.eclipse.update.core.freebsd/src/"/> + + <!-- sets the properties --> +@@ -44,15 +44,16 @@ + <target name="build"> + <echo message="Building ${library-file}"/> + +- <property name="header-path" value="${jdk-path}/../include"/> ++ <property name="header-path" value="${jdk-path}/include"/> + <property name="header-freebsd-path" value="${header-path}/freebsd" /> + +- <echo message="gcc -o ${library-file} -shared -I${src-path} -I${header-freebsd-path} ${library-file} -static -lc"/> ++ <echo message="${CC} -o ${library-file} -shared -fPIC -I${src-path} -I${header-path} -I${header-freebsd-path} ${library-file} -static -lc"/> + +- <apply executable="gcc" dest="${eclipse-home}/" parallel="false"> ++ <apply executable="${CC}" dest="${eclipse-home}/" parallel="false"> + <arg value="-o"/> + <arg value="${library-file}"/> + <arg value="-shared"/> ++ <arg value="-fPIC"/> + <arg value="-I${src-path}"/> + <arg value="-I${header-path}"/> + <arg value="-I${header-freebsd-path}"/> diff --git a/java/eclipse/files/patch-plugins-update-src-update.c b/java/eclipse/files/patch-plugins-update-src-update.c new file mode 100644 index 000000000000..6d3991ec7358 --- /dev/null +++ b/java/eclipse/files/patch-plugins-update-src-update.c @@ -0,0 +1,15 @@ +--- plugins/org.eclipse.update.core.linux/src/update.c.orig Fri May 13 11:37:58 2005 ++++ plugins/org.eclipse.update.core.linux/src/update.c Sat May 14 19:01:31 2005 +@@ -12,7 +12,12 @@ + /* bug 82520 : need to include stdlib.h */
+ # include <stdlib.h>
+ # include <sys/types.h>
++#ifdef __FreeBSD__ ++# include <sys/param.h> ++# include <sys/mount.h> ++#else + # include <sys/statfs.h>
++#endif + # include <update.h>
+
+ /*
diff --git a/java/eclipse/files/patch-update.c b/java/eclipse/files/patch-update.c deleted file mode 100644 index 83b2047bf2b9..000000000000 --- a/java/eclipse/files/patch-update.c +++ /dev/null @@ -1,17 +0,0 @@ ---- plugins/org.eclipse.update.core.linux/src/update.c.orig Sun Jun 13 22:47:30 2004 -+++ plugins/org.eclipse.update.core.linux/src/update.c Sun Jun 13 22:48:22 2004 -@@ -10,8 +10,14 @@ - *******************************************************************************/
-
- # include <sys/types.h>
-+#ifdef __FreeBSD__ -+# include <sys/param.h> -+# include <sys/mount.h> -+# include "update.h" -+#else - # include <sys/statfs.h>
- # include <update.h>
-+#endif -
- /*
- * Class: org_eclipse_update_configuration_LocalSystemInfo
diff --git a/java/eclipse/files/swt-motif-build.sh b/java/eclipse/files/swt-motif-build.sh deleted file mode 100644 index 7e6ed8a8592f..000000000000 --- a/java/eclipse/files/swt-motif-build.sh +++ /dev/null @@ -1,105 +0,0 @@ -#******************************************************************************* -# Copyright (c) 2000, 2004 IBM Corporation and others. -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Common Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/cpl-v10.html -# -# Contributors: -# IBM Corporation - initial API and implementation -# Kevin Cornell (Rational Software Corporation) -# Tom Tromey (Red Hat, Inc.) -# Sridhar Bidigalu (ICS) -#******************************************************************************* - -#!/bin/sh - -# Determine the operating system being built -OS=`uname -s` - -# build according to the operating system -case $OS in - - "AIX") - if [ "$1" = "clean" ]; then - make -f make_aix.mak clean - else - echo "Building AIX version of SWT and CDE DLLs." - make -f make_aix.mak make_swt - make -f make_aix.mak make_cde - fi - ;; - - "FreeBSD") - if [ "$1" = "clean" ]; then - gmake -f make_freebsd.mak clean - else - echo "Building FreeBSD version of SWT and GNOME DLLs." - gmake -f make_freebsd.mak ${1} ${2} ${3} ${4} - build_kde=`pkg_info -xc kdebase | grep "no packages match"` - if [ "$build_kde" != "" ]; then - echo "Building FreeBSD version of KDE DLL." - gmake -f make_freebsd.mak make_kde - fi - fi - ;; - - "Linux") - if [ "$1" = "clean" ]; then - make -f make_linux.mak clean - else - echo "Building Linux version of SWT and GNOME DLLs." - make -f make_linux.mak make_swt make_awt make_gnome make_gtk - - build_kde=`rpm -q kdebase | grep "not installed"` - if [ "$build_kde" = "" ]; then - echo "Building Linux version of KDE DLL." - make -f make_linux.mak make_kde - fi - fi - ;; - - "SunOS") - if [ "$1" = "clean" ]; then - make -f make_solaris.mak clean - else - echo "Building Solaris version of SWT and CDE DLLs." - make -f make_solaris.mak make_swt - make -f make_solaris.mak make_cde - fi - ;; - - "HP-UX") - # Determine the model number system being built - MODEL=`uname -m` - - case $MODEL in - - "ia64") - # ia64 based systems - if [ "$1" = "clean" ]; then - make -f make_hpux_ia64.mak clean - else - echo "Building HP-UX ia64 version of SWT and CDE DLLs." - make -f make_hpux_ia64.mak make_swt - make -f make_hpux_ia64.mak make_cde - fi - ;; - - *) - # PA_RISC based systems - if [ "$1" = "clean" ]; then - make -f make_hpux_PA_RISC.mak clean - else - echo "Building HP-UX PA_RISC version of SWT and CDE DLLs." - make -f make_hpux_PA_RISC.mak make_swt - make -f make_hpux_PA_RISC.mak make_cde - fi - ;; - esac - ;; - - *) - echo "Unknown OS -- build aborted" - ;; -esac diff --git a/java/eclipse/files/update-build.xml b/java/eclipse/files/update-build.xml deleted file mode 100644 index fc5007598f16..000000000000 --- a/java/eclipse/files/update-build.xml +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project name="buildlibrary" default="run" basedir="."> - - <!-- The properties ${eclipse-home} ${jdk-path} should be passed into this script --> - <!-- Set a meaningful default value for when it is not. --> - <property name="eclipse-home" value="${basedir}/../.."/> - <property name="jdk-path" value="${java.home}"/> - <property name="destination" value="${eclipse-home}/org.eclipse.update.core.freebsd/os/freebsd/x86/"/> - <property name="obj-path" value="${eclipse-home}/org.eclipse.update.core/src/"/> - <property name="src-path" value="${eclipse-home}/org.eclipse.update.core.freebsd/src/"/> - - <!-- sets the properties --> - <property name="library-name" value="libupdate"/> - <property name="library-platform" value="so"/> - <property name="library-file" value="${library-name}.${library-platform}"/> - - <!-- This target holds all initialization code that needs to be done for --> - <!-- all tests that are to be run. Initialization for individual tests --> - <!-- should be done within the body of the suite target. --> - <target name="init"> - <tstamp/> - <delete> - <fileset dir="${obj-path}" includes="${library-file}"/> - <fileset dir="${obj-path}" includes="${library-name}.o"/> - </delete> - </target> - - <!-- This target holds code to cleanup the testing environment after --> - <!-- after all of the tests have been run. You can use this target to --> - <!-- delete temporary files that have been created. --> - <target name="cleanup"> - <delete> - <fileset dir="${obj-path}" includes="${library-file}"/> - <fileset dir="${obj-path}" includes="${library-name}.o"/> - </delete> - </target> - - - <!-- This target runs the build. --> - <target name="run" depends="init,build,cleanup"> - </target> - - <!-- This target build the library --> - <target name="build"> - <echo message="Building ${library-file}"/> - - <property name="header-path" value="${jdk-path}/include"/> - <property name="header-freebsd-path" value="${header-path}/freebsd" /> - - <echo message="${CC} -o ${library-file} -shared -I${src-path} -I${header-path} -I${header-freebsd-path} ${library-file} -static -lc"/> - - <apply executable="${CC}" dest="${eclipse-home}/" parallel="false"> - <arg value="-o"/> - <arg value="${library-file}"/> - <arg value="-shared"/> - <arg value="-I${src-path}"/> - <arg value="-I${header-path}"/> - <arg value="-I${header-freebsd-path}"/> - <srcfile/> - <arg value="-static"/> - <arg value="-lc"/> - <fileset dir="${src-path}" includes="*.c"/> - <mapper type="glob" from="*.c" to="*.o"/> - </apply> - - <move file="${library-file}" todir="${destination}"/> - </target> - - -</project> diff --git a/java/eclipse/pkg-plist b/java/eclipse/pkg-plist deleted file mode 100644 index 0a941f3c4488..000000000000 --- a/java/eclipse/pkg-plist +++ /dev/null @@ -1,3366 +0,0 @@ -bin/eclipse -eclipse/.eclipseproduct -eclipse/configuration/config.ini -eclipse/cpl-v10.html -eclipse/eclipse -eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/cpl-v10.html -eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/eclipse_update_120.jpg -eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/feature.properties -eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/feature.xml -eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/license.html -eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/cpl-v10.html -eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/eclipse_update_120.jpg -eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/feature.properties -eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/feature.xml -eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/license.html -eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/cpl-v10.html -eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/eclipse_update_120.jpg -eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/feature.properties -eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/feature.xml -eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/license.html -eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/cpl-v10.html -eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/eclipse_update_120.jpg -eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/feature.properties -eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/feature.xml -eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/license.html -eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/cpl-v10.html -eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/eclipse_update_120.jpg -eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/feature.properties -eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/feature.xml -eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/license.html -eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/cpl-v10.html -eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/eclipse_update_120.jpg -eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/feature.properties -eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/feature.xml -eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/license.html -eclipse/icon.xpm -eclipse/notice.html -eclipse/plugins/org.apache.ant_1.6.2/LICENSE.dom.html -eclipse/plugins/org.apache.ant_1.6.2/LICENSE.sax.txt -eclipse/plugins/org.apache.ant_1.6.2/about.html -eclipse/plugins/org.apache.ant_1.6.2/asl-v20.txt -eclipse/plugins/org.apache.ant_1.6.2/bin/antRun -eclipse/plugins/org.apache.ant_1.6.2/bin/antRun.bat -eclipse/plugins/org.apache.ant_1.6.2/bin/antRun.pl -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-antlr.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-bcel.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-bsf.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-log4j.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-oro.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-regexp.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-resolver.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-commons-logging.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-commons-net.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-icontract.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jai.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-javamail.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jdepend.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jmf.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jsch.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-junit.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-launcher.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-netrexx.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-nodeps.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-starteam.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-stylebook.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-swing.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-trax.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-vaj.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-weblogic.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-xalan1.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant-xslp.jar -eclipse/plugins/org.apache.ant_1.6.2/lib/ant.jar -eclipse/plugins/org.apache.ant_1.6.2/plugin.properties -eclipse/plugins/org.apache.ant_1.6.2/plugin.xml -eclipse/plugins/org.apache.lucene_1.3.1/about.html -eclipse/plugins/org.apache.lucene_1.3.1/lucene-1.3-final.jar -eclipse/plugins/org.apache.lucene_1.3.1/parser.jar -eclipse/plugins/org.apache.lucene_1.3.1/plugin.properties -eclipse/plugins/org.apache.lucene_1.3.1/plugin.xml -eclipse/plugins/org.eclipse.ant.core_3.0.0/.options -eclipse/plugins/org.eclipse.ant.core_3.0.0/about.html -eclipse/plugins/org.eclipse.ant.core_3.0.0/antsupport.jar -eclipse/plugins/org.eclipse.ant.core_3.0.0/lib/antsupportlib.jar -eclipse/plugins/org.eclipse.ant.core_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ant.core_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/antui.jar -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/add_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/alpha_mode.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ant_targets.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_imported_elements.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_internal_targets.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_properties.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_top_level.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/properties.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/remove_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/removeall_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/run_tool.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/search.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synched.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/add_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/alpha_mode.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/ant_targets.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_imported_elements.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_internal_targets.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_properties.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_top_level.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/properties.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/remove_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/removeall_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/run_tool.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/search.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/synched.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/eview16/ant_view.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/ant.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/ant_buildfile.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/ant_target_err.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/anttaskdef_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/build_tab.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/classpath.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/defaulttarget_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/import_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_l_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/macrodef_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/main_tab.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/prop_ps.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/property_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/targetinternal_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/targetpublic_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/task_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/template_obj.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/type.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16/error_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16/import_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/wizban/importbuildfile_wiz.gif -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/antrunner.jar -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/remoteAnt.jar -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates/ant.properties -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates/ant.xml -eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates/resolver.gif -eclipse/plugins/org.eclipse.compare_3.0.0/about.html -eclipse/plugins/org.eclipse.compare_3.0.0/compare.jar -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/ancestorpane_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/copy_l_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/copy_r_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/copycont_l_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/copycont_r_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/next_nav.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/prev_nav.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/smartmode_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/syncpane_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/twowaycompare_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dtool16/conflict_edit.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dtool16/ignorews_edit.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/ancestorpane_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/copy_l_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/copy_r_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/copycont_l_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/copycont_r_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/next_nav.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/prev_nav.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/smartmode_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/syncpane_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16/twowaycompare_co.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/etool16/conflict_edit.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/etool16/ignorews_edit.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/eview16/compare_view.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/obj16/day_obj.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/obj16/resource_obj.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/add_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/chg_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/confadd_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/confchg_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/confdel_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/del_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/error_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/inadd_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/inchg_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/indel_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/outadd_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/outchg_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/outdel_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/r_inadd_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/r_inchg_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/r_indel_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/r_outadd_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/r_outchg_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16/r_outdel_ov.gif -eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/wizban/applypatch_wizban.gif -eclipse/plugins/org.eclipse.compare_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.compare_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.boot_3.0.0/about.html -eclipse/plugins/org.eclipse.core.boot_3.0.0/boot.jar -eclipse/plugins/org.eclipse.core.boot_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.core.boot_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.expressions_3.0.0/.options -eclipse/plugins/org.eclipse.core.expressions_3.0.0/about.html -eclipse/plugins/org.eclipse.core.expressions_3.0.0/expressions.jar -eclipse/plugins/org.eclipse.core.expressions_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.core.expressions_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/filebuffers.jar -eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/fragment.xml -eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/freebsd/x86/libcore_2_1_0b.so -eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks/resources-ant.jar -eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/resources.jar -eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/about.html -eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar -eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/runtime.jar -eclipse/plugins/org.eclipse.core.variables_3.0.0/.options -eclipse/plugins/org.eclipse.core.variables_3.0.0/about.html -eclipse/plugins/org.eclipse.core.variables_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.core.variables_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.variables_3.0.0/variables.jar -eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/dtcore.jar -eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/dtui.jar -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/changevariablevalue_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/copy_edit_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/copyviewtoclipboard_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/debuglast_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/det_pane_hide.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/det_pane_right.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/det_pane_under.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/disabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/disconnect_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/edtsrclkup_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/enabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/lock_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/memoryreset_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/monitorexpression_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/printview_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/rem_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/removememory_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/resume_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/runlast_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/runtoline_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/skip_brkp.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepbystep_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepinto_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepover_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepreturn_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/suspend_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/terminate_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/terminate_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/terminate_rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/tnames_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/toggledetailpane_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/var_cntnt_prvdr.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/debug_exc.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/environment_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/profile_exc.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/run_exc.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/watch_exp.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/changevariablevalue_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/copy_edit_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/copyviewtoclipboard_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/debuglast_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/det_pane_hide.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/det_pane_right.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/det_pane_under.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/disabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/disconnect_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/edtsrclkup_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/enabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/lock_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/memoryreset_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/monitorexpression_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/printview_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/rem_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/removememory_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/resume_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/runlast_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/runtoline_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/skip_brkp.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepbystep_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepinto_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepover_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepreturn_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/suspend_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/terminate_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/terminate_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/terminate_rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/tnames_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/toggledetailpane_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/var_cntnt_prvdr.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/debug_exc.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/environment_co.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/profile_exc.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/run_exc.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/watch_exp.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/breakpoint_view.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/debug_persp.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/debug_view.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/details_view.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/memory_view.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/register_view.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/variable_view.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/watchlist_view.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/arraypartition_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/brkp_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/brkpd_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/common_tab.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/debugt_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/debugts_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/debugtt_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/environment_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/expression_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/fldr_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/genericreggroup_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/genericregister_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/genericvariable_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/inst_ptr.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/inst_ptr_top.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/ldebug_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/lrun_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/memory_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/memorychanged_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/osprc_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/osprct_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/persp_tab.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/prj_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/readwrite_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/readwrite_obj_disabled.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/refresh_tab.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/rundebug.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/stckframe_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/stckframe_running_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/terminatedlaunch_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/thread_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/threads_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/threadt_obj.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/workset.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/error.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/stcksync_ov.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/transparent.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/addsrcloc_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/debug_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/edtsrclkup_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/profile_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/run_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.help.appserver_3.0.0/about.html -eclipse/plugins/org.eclipse.help.appserver_3.0.0/appserver.jar -eclipse/plugins/org.eclipse.help.appserver_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.help.appserver_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.help.appserver_3.0.0/preferences.ini -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/book.css -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/contents_view.gif -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/cpy.gif -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/e_show_all.gif -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/e_synch_nav.gif -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/e_synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/help_banner.jpg -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/help_home.html -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/hglegal2004.htm -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/search_results_view.gif -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/helpbase.jar -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/preferences.ini -eclipse/plugins/org.eclipse.help.ide_3.0.0/about.html -eclipse/plugins/org.eclipse.help.ide_3.0.0/contexts.xml -eclipse/plugins/org.eclipse.help.ide_3.0.0/contexts_search.xml -eclipse/plugins/org.eclipse.help.ide_3.0.0/helpide.jar -eclipse/plugins/org.eclipse.help.ide_3.0.0/icons/e_search_menu.gif -eclipse/plugins/org.eclipse.help.ide_3.0.0/icons/e_search_sortmatch.gif -eclipse/plugins/org.eclipse.help.ide_3.0.0/icons/search_menu.gif -eclipse/plugins/org.eclipse.help.ide_3.0.0/icons/search_sortmatch.gif -eclipse/plugins/org.eclipse.help.ide_3.0.0/icons/topic.gif -eclipse/plugins/org.eclipse.help.ide_3.0.0/icons/workingset.gif -eclipse/plugins/org.eclipse.help.ide_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.help.ide_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.help.ui_3.0.0/.options -eclipse/plugins/org.eclipse.help.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.help.ui_3.0.0/contexts.xml -eclipse/plugins/org.eclipse.help.ui_3.0.0/helpui.jar -eclipse/plugins/org.eclipse.help.ui_3.0.0/icons/topic.gif -eclipse/plugins/org.eclipse.help.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.help.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/jsp.jar -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/servlets.jar -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/servletssrc.zip -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/web.xml -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/advanced.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/askShowAll.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/banner.html -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/bookmarksToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/bookmarksView.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/confirm.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/confirmShowAll.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/content.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/contentActions.js -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/contentToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/err.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/fheader.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/header.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/help.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/highlight.js -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/add_bkmrk.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/back.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/bookmark_rem.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/bookmark_remall.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/container_obj.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_add_bkmrk.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_back.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_bookmark_rem.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_bookmark_remall.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_bookmarks_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_contents_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_forward.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_links_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_maximize.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_print_edit.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_restore.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_search_results_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_show_all.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_synch_nav.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/forward.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/help_banner.jpg -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/maximize.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/minus.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/plus.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/print_edit.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/restore.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/show_all.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/synch_nav.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/toc_closed.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/toc_open.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/topic.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/index.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/linksToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/linksView.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/list.css -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/list.js -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/livehelp_js.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/nav.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/navActions.js -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/search.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchScoped.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchSimple.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchView.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tabs.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/toc.js -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tocFragment.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tocToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tocView.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/toolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tree.css -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/view.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/views.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/workingSet.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/workingSetManager.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/advanced.inc -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/err.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/header.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/help.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/bookmark_obj.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/bookmarks_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/container_obj.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_contents_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_links_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_search_results_view.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/toc_closed.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/toc_open.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/topic.gif -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/index.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/linksToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/linksView.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/livehelp_js.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/searchToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/searchView.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/tabs.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/tocToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/tocView.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/toolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/view.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/index.jsp -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/webapp.jar -eclipse/plugins/org.eclipse.help_3.0.0/.options -eclipse/plugins/org.eclipse.help_3.0.0/about.html -eclipse/plugins/org.eclipse.help_3.0.0/dtd/contexts.dtd -eclipse/plugins/org.eclipse.help_3.0.0/dtd/toc.dtd -eclipse/plugins/org.eclipse.help_3.0.0/help.jar -eclipse/plugins/org.eclipse.help_3.0.0/livehelp.js -eclipse/plugins/org.eclipse.help_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.help_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.help_3.0.0/preferences.ini -eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtCompilerAdapter.jar -eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtcore.jar -eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/constant_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/deadlock_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/drop_to_frame.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/final_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/monitor_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/resume_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/sethitcount_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/suspend_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/thread_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/debug_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/disp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/insp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_applet.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/run_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/run_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/term_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/watch_exp.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/constant_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/deadlock_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/drop_to_frame.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/final_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/monitor_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/resume_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/sethitcount_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/suspend_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/thread_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/debug_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/disp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/insp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/java_applet.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/run_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/run_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/term_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/watch_exp.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/thread_and_monitor_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/variable_tab.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/brkpi_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/classpath_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/insp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jexception_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jexceptiond_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jrtexception_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jsbook_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jsbook_run_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/library_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/localvariable_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/monitor_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/package_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/prj_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/read_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/read_obj_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/thread_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/write_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/write_obj_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/caught_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/caught_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/conditional_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/conditional_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/contention_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/contentionformonitor_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/entry_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/entry_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/error_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/exit_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/exit_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/installed_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/installed_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/owned_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/ownsmonitor_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/scoped_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/scoped_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/uncaught_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/uncaught_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/java_app_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/java_attach_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/library_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/jdiui.jar -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/snippetsupport.jar -eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdi.jar -eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdimodel.jar -eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/book.css -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/cpy.gif -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/doc.zip -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/notices.html -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/schema.css -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/toc.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Guide.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Questions.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Reference.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Samples.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/book.css -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_Debugger.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_JDT.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_JDT_Debugger.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_JDT_JUnit.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/cpy.gif -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/doc.zip -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/notices.html -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/toc.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_Concepts.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_GettingStarted.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_Reference.xml -eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_Tasks.xml -eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/junitruntime.jar -eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/cfilter.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/compare.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/lock.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/relaunch.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/select_next.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/select_prev.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/stop.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/debugjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/new_testcase.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/new_testsuite.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/runjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/cfilter.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/compare.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/lock.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/relaunch.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/select_next.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/select_prev.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/stop.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/debugjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/new_testcase.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/new_testsuite.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/runjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/junit.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/juniterr.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/juniterrq.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/junitsucc.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/junitsuccq.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/stackframe.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/faillist.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/failures.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/julaunch.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/stkfrm_obj.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/test.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testerr.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testfail.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testhier.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testok.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testrun.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuite.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuiteerror.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuitefail.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuiteok.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuiterun.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16/error_ovr.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16/failed_ovr.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16/success_ovr.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff1.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff2.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff3.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff4.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff5.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff6.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff7.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff8.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff9.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss1.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss2.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss3.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss4.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss5.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss6.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss7.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss8.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss9.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/wizban/newsuite_wiz.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/wizban/newtest_wiz.gif -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/junitsupport.jar -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/java.policy.applet -eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/launching.jar -eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib/launchingsupport.jar -eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.ini -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.mappings -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/antuisrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/antrunnersrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/remoteAntsrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtCompilerAdaptersrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtcoresrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema/classpathContainerInitializer.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema/classpathVariableInitializer.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema/codeFormatter.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/jdiuisrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/schema/vmInstallTypePage.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/snippetsupportsrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdimodelsrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdisrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit.runtime_3.0.0/junitruntimesrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/junitsupportsrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema/internal-testRunTabs.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema/junitLaunchConfigs.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema/testRunListeners.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/launchingsrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib/launchingsupportsrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/classpathProviders.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/runtimeClasspathEntries.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/runtimeClasspathEntryResolvers.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/vmConnectors.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/vmInstallTypes.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/jdtsrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/classpathContainerPage.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/foldingStructureProviders.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/javaEditorTextHovers.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/javaElementFilters.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/javadocCompletionProcessor.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/queryParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/quickAssistProcessors.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/quickFixProcessors.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/refcoresrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/createParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/deleteParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/moveParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/renameParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/refuisrc.zip -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/schema/changePreviewViewers.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/schema/statusContextViewers.exsd -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.junit_3.8.1/about.html -eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.junit_3.8.1/junitsrc.zip -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/JavadocViewStyleSheet.css -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/add_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/alphab_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ch_callees.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ch_callers.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ch_cancel.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/class_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/default_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/definingtype_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/fields_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/file_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/flatLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/gointo_toplevel_type.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/goto_input.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hide_externalized.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hide_ignored.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hide_internalized.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchy_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/history_list.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/impl_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/inher_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/localtypes_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/pack_empty_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/package_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/private_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/prj_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/protected_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/public_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/remove_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/removea_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/sub_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/super_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_showqualified.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_single.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/type_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/view_menu.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/comment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/exportapp_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/exportjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/importjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/javadoc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/jdoc_hover_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/mark_occurrences.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newclass_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newint_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newjprj_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newjworkingSet_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newpack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newpackfolder_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/opentype.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/segment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/shift_l_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/shift_r_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/add_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/alphab_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/ch_callees.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/ch_callers.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/ch_cancel.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/class_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/default_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/definingtype_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/fields_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/file_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/flatLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/gointo_toplevel_type.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/goto_input.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hide_externalized.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hide_ignored.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hide_internalized.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hierarchy_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/history_list.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/impl_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/inher_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/localtypes_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/pack_empty_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/package_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/private_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/prj_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/protected_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/public_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/remove_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/removea_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/sub_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/super_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_showqualified.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_single.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/type_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/view_menu.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/comment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/exportapp_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/exportjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/importjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/javadoc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/jdoc_hover_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/mark_occurrences.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newclass_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newint_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newjprj_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newjworkingSet_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newpack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newpackfolder_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/opentype.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/segment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/shift_l_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/shift_r_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/browse_persp.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/call_hierarchy.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/class_hi.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/classfilegeneration_tab.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/errorwarning_tab.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/hierch_persp.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/javadoc.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/jdkcompliance_tab.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/jperspective.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/members.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/package.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/packages.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/projects.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/source.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/types.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/add_correction.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/brkpi_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/change.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/class_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/class_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/classf_generate.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/classf_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/classfo_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/compare_field.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/compare_method.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/composite_change.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_cast.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_change.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_delete_import.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_move.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_rename.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/cp_order_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/cu_change.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/cu_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/empty_logical_package_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/empty_pack_fldr_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/empty_pack_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/error_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/exclusion_filter_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/externalize.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/fatalerror_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_private_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_protected_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_public_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/file_change.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/file_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/html_tag_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/ignore.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/imp_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/impc_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/implm_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/inclusion_filter_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/info_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_private_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_protected_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_public_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_private_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_protected_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_public_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/int_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/int_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/internalize.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/intf_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_desc_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_l_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_lsrc_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_src_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/java_model_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/javadoc_location_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jcu_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jcu_resource_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jdoc_tag_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jexception_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jexceptiond_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jrtexception_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jsbook_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jsearch_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jworkingSet_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/library_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/localvariable_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/logical_package_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methdef_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methpri_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methpro_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methpub_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/never_translate.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/nls_search_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/no_breakpoint.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/occ_match.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/occ_read.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/occ_write.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/output_folder_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/over_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/package_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/packagefolder_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/packagefolder_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/packd_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/prjct_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/quickassist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/quickfix_error_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/quickfix_warning_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/remove_correction.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/search_decl_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/search_ref_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/searchm_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/skip.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/source_attach_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/template_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/text_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/translate.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/unknown_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/warning_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/abstract_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/callee_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/caller_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/constr_ovr.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/deprecated.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/error_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/final_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/focus_ovr.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/implm_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/java_ovr.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/maxlevel_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/native_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/over_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/read.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/recursive_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/run_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/static_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/sync_impl.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/sync_over.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/synch_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/volatile_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/write.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/addlibrary_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/coderefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/compunitrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/export_javadoc_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/exportapp_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/extstr_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/fieldrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/jar_pack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/java_app_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/java_attach_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/java_workingset_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/methrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newclass_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newfield_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newint_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newjprj_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newmeth_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newpack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newsrcfldr_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/packrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/pullup_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/refactor_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/typerefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/jdt.jar -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates/default-codetemplates.xml -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates/default-templates.properties -eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates/default-templates.xml -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.ini -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.mappings -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/cheatsheets/HelloWorld.xml -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/cheatsheets/HelloWorldSWT.xml -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapp_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapphov_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapplet_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapplethov_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javadev_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javadevhov_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/script_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/scripthov_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/swtapp_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/swtapphov_obj.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/overview.css -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/samples.css -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/swt.properties -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/tutorials.css -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/newsExtensionContent.xml -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/overviewExtensionContent.xml -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/samplesExtensionContent.xml -eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/tutorialsExtensionContent.xml -eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/jfacetext.jar -eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.jface_3.0.0/about.html -eclipse/plugins/org.eclipse.jface_3.0.0/jface.jar -eclipse/plugins/org.eclipse.jface_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jface_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/refcore.jar -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/composite_change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/cu_change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/error_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/fatalerror_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/file_change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/info_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/text_edit.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/warning_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/wizban/refactor_wiz.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/refui.jar -eclipse/plugins/org.eclipse.osgi.services_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.osgi.services_3.0.0/about.html -eclipse/plugins/org.eclipse.osgi.services_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.osgi.services_3.0.0/services.jar -eclipse/plugins/org.eclipse.osgi.util_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.osgi.util_3.0.0/about.html -eclipse/plugins/org.eclipse.osgi.util_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.osgi.util_3.0.0/util.jar -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/console.jar -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/core.jar -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/defaultAdaptor.jar -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/eclipse.properties -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/eclipseAdaptor.jar -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/osgi.jar -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/resolver.jar -eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/systembundle.properties -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/.project -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/build.properties -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/builder/build.properties -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/builder/customTargets.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/cpl-v10.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/eclipse_update_120.jpg -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/feature.properties -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/feature.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/license.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/.eclipseproduct -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/cpl-v10.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/install.ini -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/notice.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/readme/readme_eclipse.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/lib/pdebuild-ant.jar -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/notes/m2 notes.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/notes/usingPDEBuild.html -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/pdebuild.jar -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/build-template.properties -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/build.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/customTargets-template.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/genericTargets.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/package.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/fragment/fragment.xml -eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/plugin/plugin.xml -eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/dtd/feature.dtd -eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/dtd/site.dtd -eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/pdecore.jar -eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/about.properties -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/book.css -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/contexts_PDE.xml -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/cpy.gif -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/doc.zip -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/notices.html -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/schema.css -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/toc.xml -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/topics_Reference.xml -eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/workbench.gif -eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/pdejunit.jar -eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/clear.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/export_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/import_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/open_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/properties.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/remove.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/clear.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/export_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/import_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/open_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/properties.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/remove.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/error_log.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/event_next.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/event_prev.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/hide_pane.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/horizontal_view.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/registry.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/vertical_view.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/error_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/error_stack.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/ext_point_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/ext_points_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/extension_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/extensions_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/generic_xml_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/info_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/java_lib_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/ok_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/plugin_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/req_plugin_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/req_plugins_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/runtime_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/warning_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/ovr16/run_co.gif -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/pdert.jar -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.ini -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.mappings -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/lib/pdebuild-antsrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/pdebuildsrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/pdecoresrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/schema/source.exsd -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.junit.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.junit.runtime_3.0.0/pdejunitsrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.runtime_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.runtime_%%RELEASEVERSION%%/pdertsrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeuiantsrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeuisrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/newExtension.exsd -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/pluginContent.exsd -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/samples.exsd -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/templates.exsd -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks/pde-antsrc.zip -eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/pdesrc.zip -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/add_att.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/clear.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/clone_att.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/clone_el.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/full_hierarchy.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/generate_class.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/goto_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/maximize.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/properties.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/remove_att.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/restore.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/convjpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/defbcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/defcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/eclipse_launcher.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/eclipse_launcher_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/exp_deployfeat.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/exp_deployplug.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/imp_extfeat.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/imp_extplug.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newbexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newbfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newbprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newefix_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newexp_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newftrprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newsiteprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/rclpltf_appex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/script_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/add_att.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/clear.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/clone_att.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/clone_el.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/full_hierarchy.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/generate_class.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/goto_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/help.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/maximize.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/properties.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/remove_att.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/restore.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/convjpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/defbcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/defcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/eclipse_launcher.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/eclipse_launcher_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/exp_deployfeat.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/exp_deployplug.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/imp_extfeat.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/imp_extplug.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newbexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newbfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newbprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newefix_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newexp_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newftrprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newsiteprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/rclpltf_appex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/script_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/eview16/plugin_depend.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/eview16/plugins.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/alert_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/all_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_URI_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_class_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_file_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_impl_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_req_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/build_exec.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/build_var_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundle_fragment_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundle_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundle_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundled_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundlef_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundlefd_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/category_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/choice_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/debug_exc.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/discovery.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/doc_section_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/element.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/elref_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/error_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ext_plugin_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ext_point_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ext_points_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/extension_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/extensions_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/external_frgmt_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/feature_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmt_dis_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmt_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmt_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmts_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ftr_jar_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ftr_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ftr_xml_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/gel_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/generic_xml_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/group_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/info_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/install-handler.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/java_lib_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/julaunchpgn.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/link_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/links_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/loop_node_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/loop_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/noref_feature_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ok_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/output_folder_attrib.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/overview_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/page_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_config_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_configs_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_dis_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/processinginst.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/psearch_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/req_plugin_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/req_plugins_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/run_exc.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/runtime_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/schema_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/scomp_jar_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/seq_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/site_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/site_xml_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/test.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/tsk_alert_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/update.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/url.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/warning_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/binary_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/doc_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/error_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/export_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/external_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/jar_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/java_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/project_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/run_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/error_log.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/plugin_persp.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/plugins.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/registry.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/variable_tab.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/4fun.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/convjpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/debug_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/defcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/exp_deployfeat_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/exp_deployplug_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/form_banner.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/imp_extfeat_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/imp_extplug_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/migrate_30_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newbexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newbfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newbprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newefix_wizban.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newexp_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newftrprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newsiteprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/plugin2bundle_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/rclpltf_appex_wizban.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/run_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/schema_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeui.jar -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeuiant.jar -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/$editorClass$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/ColorManager.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/IXMLColorConstants.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/NonRuleBasedDamagerRepairer.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/TagRule.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLConfiguration.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLDocumentProvider.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLDoubleClickStrategy.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLPartitionScanner.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLScanner.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLTagScanner.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLWhitespaceDetector.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/toc.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocconcepts.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocgettingstarted.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocreference.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocsamples.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/toctasks.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/testToc.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/toc.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/java/$contributorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/java/$editorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/java/$wizardClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/java/$wizardPageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/popupMenus/java/$actionClass$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/preferences/java/$pageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/propertyPages/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/$editorClass$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/ColorManager.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/IXMLColorConstants.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/NonRuleBasedDamagerRepairer.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/TagRule.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLConfiguration.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLDocumentProvider.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLDoubleClickStrategy.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLPartitionScanner.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLScanner.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLTagScanner.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLWhitespaceDetector.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/toc.html -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocconcepts.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocgettingstarted.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocreference.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocsamples.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/toctasks.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/testToc.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/toc.xml -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/java/$contributorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/java/$editorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/java/$wizardClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/java/$wizardPageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/popupMenus/java/$actionClass$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/preferences/java/$pageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/propertyPages/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/java/$className$.java -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.ini -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.mappings -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks/pde-ant.jar -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/cheatsheets/helloworld.xml -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/cheatsheets/updates.xml -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/features_obj.gif -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/featureshov_obj.gif -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/plugin_obj.gif -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/pluginhov_obj.gif -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/rcpapp_obj.gif -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/rcpapphov_obj.gif -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/overview.css -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/swt.properties -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/tutorials.css -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/newsExtensionContent.xml -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/overviewExtensionContent.xml -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/pde.jar -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/tutorialsExtensionContent.xml -eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/welcome.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/activeHelpSample.jar -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/book.css -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/cpy.gif -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/doc.zip -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/notices.html -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/schema.css -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/toc.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Guide.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Porting.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Questions.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Reference.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Samples.xml -eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/workbench.gif -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/book.css -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_AntUI.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Compare.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_ExternalTools.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Search.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Team.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Team_CVS.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Update.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Workbench.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/cpy.gif -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/doc.zip -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/no_help_exists.htm -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/notices.html -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/toc.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_Concepts.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_GettingStarted.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_Reference.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_Tasks.xml -eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/workbench.gif -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/fragment.xml -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/cpl-v10.html -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/lgpl-v21.txt -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/mpl-v11.txt -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-mozillasrc.zip -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-pisrc.zip -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swtsrc.zip -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/fragment.xml -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/build.xml -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/update.c -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/update.c.orig -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/update.h -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.ini -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.mappings -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/LICENSE.dom.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/LICENSE.sax.txt -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/asl-v20.txt -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/lib/antsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1/lucene-1.3-final-src.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1/parsersrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/antsupportsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/lib/antsupportlibsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/antProperties.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/antTasks.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/antTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/extraClasspathEntries.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/comparesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/contentMergeViewers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/contentViewers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/streamMergers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/structureCreators.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/structureMergeViewers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.boot_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/expressionssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/schema/expressionLanguage.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/schema/propertyTesters.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/filebufferssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema/annotationModelCreation.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema/documentCreation.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema/documentSetup.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks/resources-antsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/resourcessrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/builders.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/fileModificationValidator.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/markers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/moveDeleteHook.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/natures.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/refreshProviders.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/teamHook.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime.compatibility_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime.compatibility_3.0.0/compatibilitysrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/runtimesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/adapters.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/applications.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/contentTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/preferences.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/products.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/schema/dynamicVariables.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/schema/valueVariables.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/variablessrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/dtcoresrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/breakpoints.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchConfigurationComparators.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchConfigurationTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchDelegates.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchModes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/logicalStructureTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/memoryRenderings.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/processFactories.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/sourceContainerTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/sourceLocators.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/sourcePathComputers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/statusHandlers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/watchExpressionDelegates.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/dtuisrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/consoleColorProviders.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/consoleLineTrackers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/contextViewBindings.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/debugModelContextBindings.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/debugModelPresentations.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchConfigurationTabGroups.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchConfigurationTypeImages.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchGroups.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchShortcuts.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/sourceContainerPresentations.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/stringVariablePresentations.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/appserversrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/schema/server.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/helpbasesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema/browser.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema/luceneAnalyzer.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema/webapp.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ide_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ide_3.0.0/helpidesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ui_3.0.0/helpuisrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/servletssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/webappsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/helpsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema/contentProducer.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema/contexts.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema/toc.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface.text_%%RELEASEVERSION%%/jfacetextsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface_3.0.0/jfacesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.services_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.services_3.0.0/servicessrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.util_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.util_3.0.0/utilsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/consolesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/coresrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/defaultAdaptorsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/eclipseAdaptorsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/osgisrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/resolversrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/launchersrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/platformsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/startupsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema/searchPages.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema/searchResultSorters.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema/searchResultViewPages.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/searchsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/fileTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/ignore.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/projectSets.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/repository.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/teamsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/cvssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh2_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh2_3.0.0/cvsssh2src.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh_3.0.0/teamcvssshsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/teamcvsuisrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema/configurationWizards.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema/synchronizeParticipants.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema/synchronizeWizards.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/teamuisrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.text_%%RELEASEVERSION%%/textsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30/mx4j.license -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30/tomcatwrappersrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/cheatsheetssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/cheatSheetContent.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/cheatSheetContentFileSpec.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/cheatSheetItemExtension.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/contentFile.xsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.console_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.console_3.0.0/consolesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/editorssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/annotationTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/documentProviders.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/markerAnnotationSpecification.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/markerUpdaters.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/templates.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/externaltoolssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.forms_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.forms_3.0.0/formssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/idesrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/capabilities.mxsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/markerHelp.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/markerImageProviders.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/markerResolution.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/projectNatureImages.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/resourceFilters.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/introsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/IntroContent.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/book.css -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/config.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/configExtension.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/introContentFileSpec.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/schema.css -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/r21src.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.views_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.views_3.0.0/viewssrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.compatibility_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.compatibility_3.0.0/compatibilitysrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/schema/quickDiffReferenceProvider.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/texteditorsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench_%%RELEASEVERSION%%/workbenchsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/acceleratorConfigurations.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/acceleratorScopes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/acceleratorSets.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/actionDefinitions.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/actionSetPartAssociations.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/actionSets.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/activities.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/commands.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/commonAction.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/commonExpression.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/contexts.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/decorators.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/dropActions.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/editorActions.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/editors.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/elementFactories.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/exportWizards.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/fontDefinitions.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/helpSupport.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/importWizards.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/intro.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/newWizards.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/perspectiveExtensions.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/perspectives.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/popupMenus.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/preferencePages.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/presentationFactories.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/propertyPages.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/startup.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/systemSummarySections.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/themes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/viewActions.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/views.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/workingSets.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/uisrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.configurator_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.configurator_3.0.0/configuratorsrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema/featureTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema/installHandlers.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema/siteTypes.exsd -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/updatecoresrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.scheduler_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.scheduler_3.0.0/schedulersrc.zip -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.ui_%%RELEASEVERSION%%/updateuisrc.zip -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.ini -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.mappings -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/cheatsheets/CVS_1.xml -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/background.jpg -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/backgroundcurve.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/content_background.jpg -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/overview_wtr.jpg -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/samples_wtr.jpg -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section1.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section2.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section3.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section4.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/tutorials_wtr.jpg -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/whatsnew_wtr.jpg -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/wordmark.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/overview48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/overview48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/overview72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/samples48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/samples48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/samples72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/tutorials48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/tutorials48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/tutorials72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/wb48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/whatsnew48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/whatsnew48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/whatsnew72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/dtool/back.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/dtool/forward.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/back.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/forward.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/overview48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/overview48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/overview72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/samples48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/samples48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/samples72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/tutorials48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/tutorials48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/tutorials72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/wb48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/whatsnew48.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/whatsnew48sel.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/whatsnew72.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/community_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/communityhov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/features_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/featureshov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapp_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapphov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapplet_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapplethov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javadev_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javadevhov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/migrate_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/migratehov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/new_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/newhov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/plugin_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/pluginhov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/rcpapp_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/rcpapphov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/samplepurp_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/samplepurphov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/samplered_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/sampleredhov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/script_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/scripthov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/swtapp_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/swtapphov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/teamsup_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/teamsuphov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/updates_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/updateshov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/wbbasics_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/wbbasicshov_obj.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage/background.jpg -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage/brandmark.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage/dots.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/swt/form_banner.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/overview/overview.css -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/overview/swt.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/root.css -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/root_swt.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/samples/samples.css -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/samples/swt.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/shared.css -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/standby_root.css -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/standby_swt.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/tutorials/swt.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/tutorials/tutorials.css -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/whatsnew/swt.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/whatsnew/whatsnew.css -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/eclipse.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/eclipse_lg.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/intro.gif -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/introContent.xml -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/platform.jar -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin_customization.ini -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin_customization.properties -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/splash.bmp -eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/welcome.xml -eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.ini -eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.mappings -eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.properties -eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/eclipse32.gif -eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/expandall.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/flatLayout.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_goto.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_history.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_next.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_prev.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_rem.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_remall.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/stop.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/tsearch_obj.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/group_by_file.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/group_by_folder.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/group_by_project.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/search.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/expandall.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/flatLayout.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_goto.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_history.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_next.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_prev.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_rem.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_remall.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/stop.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/tsearch_obj.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/group_by_file.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/group_by_folder.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/group_by_project.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/search.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/eview16/searchres.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/obj16/searchm_obj.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/obj16/tsearch_dpdn_obj.gif -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/search.jar -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/cpl-v10.html -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/fragment.properties -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/fragment.xml -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/lgpl-v21.txt -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/mpl-v11.txt -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-atk-%%WS%%-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-awt-%%WS%%-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-gnome-%%WS%%-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-%%WS%%-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-mozilla-%%WS%%-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-pi-%%WS%%-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-mozilla.jar -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-pi.jar -eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt.jar -eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.team.core_3.0.0/.options -eclipse/plugins/org.eclipse.team.core_3.0.0/about.html -eclipse/plugins/org.eclipse.team.core_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.team.core_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.team.core_3.0.0/team.jar -eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/cvs.jar -eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/about.html -eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/cvsssh2.jar -eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/jsch-0.1.16.jar -eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/.options -eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/about.html -eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/teamcvsssh.jar -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/annotate.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/checkout.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/cvs_synch.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/ignorefiles.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/newconnect_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/newlocation_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/share_prj_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/annotate.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/checkout.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/cvs_synch.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/newconnect_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/newlocation_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/share_prj_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/annotate_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/compare_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/console_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/cvs_persp.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/history_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/rep_editors_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/repo_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph1.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph2.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph3.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph4.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph5.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph6.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph7.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph8.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/branches_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/changelog_obj.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/date.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/dates.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/module_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/prjversions_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/repository_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/tag.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/versions_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/confauto_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/edited_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/merged_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/no_remotedir_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/question_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/createpatch_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/keywordsub_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/mergestream_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/newconnect_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/newlocation_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/teamcvsui.jar -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/catchup_rls.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/catchuprelease_rls.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/checkin_action.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/checkout_action.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/conflict_synch.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_change.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/flatLayout.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ignorefiles.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ignorews_edit.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/incom_synch.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/next_nav.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/outgo_synch.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/participant_rem.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/participant_remall.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/pin.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/prev_nav.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_remote.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/release_rls.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/rem_co.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/site_element.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synch_participants.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/catchup_rls.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/catchuprelease_rls.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/checkin_action.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/checkout_action.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/conflict_synch.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_change.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/flatLayout.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/ignorefiles.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/ignorews_edit.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/incom_synch.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/next_nav.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/outgo_synch.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/participant_rem.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/participant_remall.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/pin.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/prev_nav.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh_remote.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/release_rls.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/rem_co.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/site_element.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/synch_participants.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/eview16/synch_synch.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/compressed_folder_obj.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/export_projectset.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/import_projectset.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/share_project.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/checkedout_ov.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/confchg_ov.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/dirty_ov.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/error_co.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/version_controlled.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/waiting_ovr.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/warning_co.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/export_projectset_wizban.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/import_projectset_wizban.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/keylock.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/lockkey.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/share_wizban.gif -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/teamui.jar -eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/text.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/about.html -eclipse/plugins/org.eclipse.tomcat_4.1.30/bootstrap.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/catalina.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/commons-beanutils.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/commons-collections.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/commons-digester.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/commons-logging-api.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/commons-logging.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/commons-modeler.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/conf/catalina.policy -eclipse/plugins/org.eclipse.tomcat_4.1.30/conf/tomcat-users.xml -eclipse/plugins/org.eclipse.tomcat_4.1.30/conf/web.xml -eclipse/plugins/org.eclipse.tomcat_4.1.30/jakarta-regexp-1.3.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/jasper-compiler.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/jasper-runtime.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/mx4j-jmx.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/mx4j.license -eclipse/plugins/org.eclipse.tomcat_4.1.30/naming-common.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/naming-factory.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/naming-resources.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/plugin.properties -eclipse/plugins/org.eclipse.tomcat_4.1.30/plugin.xml -eclipse/plugins/org.eclipse.tomcat_4.1.30/preferences.ini -eclipse/plugins/org.eclipse.tomcat_4.1.30/servlet.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/servlets-common.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/servlets-default.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/servlets-invoker.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/servlets-manager.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/tomcat-coyote.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/tomcat-http11.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/tomcat-util.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/tomcatwrapper.jar -eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT/WEB-INF/web.xml -eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT/index.html -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/cheatsheets.jar -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/collapse_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/collapse_expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/complete_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/icon_legend.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/restart_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/restart_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/skip_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/start_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/start_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/cview16/cheatsheet_view.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/collapse_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/collapse_expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/complete_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/icon_legend.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/restart_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/restart_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/skip_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/start_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/start_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/collapse_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/collapse_expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/complete_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/icon_legend.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/restart_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/restart_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/skip_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/start_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/start_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/eview16/cheatsheet_view.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/collapse_state.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/complete_status.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/expand_state.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/skip_status.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.console_3.0.0/.options -eclipse/plugins/org.eclipse.ui.console_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.console_3.0.0/console.jar -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/clcl16/clear_co.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/clcl16/pin.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/cview16/console_view.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/dlcl16/pin.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/elcl16/pin.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/eview16/console_view.gif -eclipse/plugins/org.eclipse.ui.console_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.console_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/editors.jar -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16/last_edit_pos.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16/last_edit_pos.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16/last_edit_pos.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/obj16/file_obj.gif -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/externaltools.jar -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/dtool16/external_tools.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/etool16/external_tools.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/builder.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/classpath.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/external_tools.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/invalid_build_tool.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/main_tab.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/wizban/ext_tools_wiz.gif -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.forms_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.forms_3.0.0/forms.jar -eclipse/plugins/org.eclipse.ui.forms_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.forms_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/configs.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/step_current.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/step_done.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/usearch_obj.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/build_exec.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/new_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/search_src.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/configs.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/step_current.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/step_done.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/usearch_obj.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/build_exec.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/new_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/search_src.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/bkmrk_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/filenav_nav.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/problems_view.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/resource_persp.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/tasks_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/bkmrk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/complete_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/cprj_obj.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/error_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/header_complete.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/header_priority.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/hprio_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/incomplete_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/info_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/lprio_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/prj_obj.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/taskmrk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/warn_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/warning.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/welcome_banner.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/welcome_editor.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/welcome_item.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/workset.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/ovr16/link_ovr.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/ovr16/linkwarn_ovr.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/progress/pview.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/export_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/import_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/new_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/workset_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/ide.jar -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/empty_swt.properties -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/blank.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/container_obj.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/contents_view.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/form_banner.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/help_topic.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/overview_32.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/overview_48.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/topic.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/welcome_item.gif -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/intro.jar -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/README.TXT -eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/r21.jar -eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/r21presentation.ini -eclipse/plugins/org.eclipse.ui.views_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full/eview16/outline_co.gif -eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full/eview16/prop_ps.gif -eclipse/plugins/org.eclipse.ui.views_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.views_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.views_3.0.0/views.jar -eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar -eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0/fragment.xml -eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/ctool16/segment_edit.gif -eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/dtool16/segment_edit.gif -eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/etool16/segment_edit.gif -eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/texteditor.jar -eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/workbench.jar -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/close_view.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/defaults_ps.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/min_view.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/pin_view.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/progress_rem.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/progress_remall.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/progress_stop.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showcomplete_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/step_current.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/step_done.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/tree_mode.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/up_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/view_menu.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/copy_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/cut_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/delete_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/help_contents.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/paste_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/pin_editor.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/print_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/redo_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/save_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/saveall_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/saveas_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/undo_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/close_view.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/defaults_ps.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/min_view.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/pin_view.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/progress_rem.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/progress_remall.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/progress_stop.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showcomplete_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/step_current.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/step_done.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/tree_mode.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/up_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/view_menu.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/copy_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/cut_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/delete_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/help_contents.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/paste_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/pin_editor.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/print_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/redo_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/save_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/saveall_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/saveas_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/undo_edit.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/bkmrk_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/default_persp.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/defaultview_misc.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/filenav_nav.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/new_persp.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/outline_co.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/problems_view.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/prop_ps.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/tasks_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/activity.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/activity_category.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/add_obj.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/bkmrk_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/blank.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/change_obj.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/complete_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/delete_obj.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/elements_obj.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/error_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/file_obj.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/fldr_obj.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/font.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/header_complete.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/header_priority.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/hprio_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/incomplete_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/info_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/lprio_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/menu.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/submenu.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/taskmrk_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/theme_category.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/toolbar.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/warn_tsk.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/ovr16/pinned_ovr.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/bottom_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/bottom_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/invalid_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/invalid_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/left_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/left_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/offscreen_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/offscreen_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/right_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/right_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/stack_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/stack_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/tofastview_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/tofastview_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/top_mask.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/top_source.bmp -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/errorstate.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/lockedstate.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_error.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_none.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_ok.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_task.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/pview.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/sleeping.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/waiting.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/export_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/import_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/new_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/saveas_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/workset_wiz.gif -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/ui.jar -eclipse/plugins/org.eclipse.update.configurator_3.0.0/.options -eclipse/plugins/org.eclipse.update.configurator_3.0.0/about.html -eclipse/plugins/org.eclipse.update.configurator_3.0.0/configurator.jar -eclipse/plugins/org.eclipse.update.configurator_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.update.configurator_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/fragment.xml -eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os/freebsd/x86/libupdate.so -eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/.options -eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/updatecore.jar -eclipse/plugins/org.eclipse.update.scheduler_3.0.0/about.html -eclipse/plugins/org.eclipse.update.scheduler_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.update.scheduler_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.update.scheduler_3.0.0/scheduler.jar -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/about.html -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16/show_unconf.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/config_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/install_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/uninstall_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/update_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16/show_unconf.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/config_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/install_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/uninstall_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/update_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/eview16/configs.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/eview16/preview.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/def_provider.jpg -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/form_banner.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/form_banner.jpg -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/form_underline.jpg -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/topic.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/app_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/bfolder_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/category_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/config_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/efix2_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/efix_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/error_st_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/esite_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/feature_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/history_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/lsite_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/notinstalled_feature_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/ok_st_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/psite_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/site_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/unconf_feature_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/updates_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/usearch_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/web_bkmrk_obj.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/add_stat.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/current_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/del_stat.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/error_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/installable_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/linked_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/mod_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/unconfigured_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/updated_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/config_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/def_wizban.jpg -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/install_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/uninstall_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/update_wiz.gif -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/plugin.properties -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/plugin.xml -eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/updateui.jar -eclipse/plugins/org.junit_3.8.1/about.html -eclipse/plugins/org.junit_3.8.1/junit.jar -eclipse/plugins/org.junit_3.8.1/plugin.properties -eclipse/plugins/org.junit_3.8.1/plugin.xml -eclipse/readme/readme_eclipse.html -eclipse/startup.jar -@dirrm eclipse/readme -@dirrm eclipse/plugins/org.junit_3.8.1 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/eview16 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16 -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.update.scheduler_3.0.0 -@dirrm eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os/freebsd/x86 -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os/freebsd -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.update.configurator_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/ctool16 -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/progress -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.forms_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/cview16 -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/clcl16 -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/cview16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT/WEB-INF -@dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT -@dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps -@dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/conf -@dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30 -@dirrm eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0 -@dirrm eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.team.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/META-INF -@dirrm eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/gtk -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86 -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/META-INF -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/whatsnew -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/tutorials -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/samples -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/overview -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/swt -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48 -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/dtool -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/cheatsheets -@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.scheduler_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.configurator_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.compatibility_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.views_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.forms_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.externaltools_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.console_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.text_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh2_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.util_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.services_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface.text_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ide_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime.compatibility_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.boot_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/lib -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2 -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src -@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/gtk -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48 -@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics -@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css -@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/cheatsheets -@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks -@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/propertyPages/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/propertyPages -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/preferences/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/preferences -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/popupMenus/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/popupMenus -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/propertyPages/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/propertyPages -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/preferences/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/preferences -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/popupMenus/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/popupMenus -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/eview16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.runtime_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.junit.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/lib -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src -@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/ovr16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.doc.user_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/dtd -@dirrm eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/plugin -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/fragment -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/notes -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/lib -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/readme -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/builder -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/META-INF -@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/META-INF -@dirrm eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.osgi.util_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.osgi.util_3.0.0 -@dirrm eclipse/plugins/org.eclipse.osgi.services_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.osgi.services_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jface_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48 -@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics -@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css -@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/cheatsheets -@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.junit_3.8.1 -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src -@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib -@dirrm eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.help_3.0.0/dtd -@dirrm eclipse/plugins/org.eclipse.help_3.0.0 -@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images -@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic -@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images -@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced -@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib -@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF -@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.help.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.help.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.help.ide_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.help.ide_3.0.0 -@dirrm eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc -@dirrm eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.help.appserver_3.0.0 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.core.variables_3.0.0 -@dirrm eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/META-INF -@dirrm eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0 -@dirrm eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks -@dirrm eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/linux/x86 -@dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/linux -@dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/freebsd/x86 -@dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/freebsd -@dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os -@dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0 -@dirrm eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.core.expressions_3.0.0 -@dirrm eclipse/plugins/org.eclipse.core.boot_3.0.0 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.compare_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons -@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%% -@dirrm eclipse/plugins/org.eclipse.ant.core_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.ant.core_3.0.0 -@dirrm eclipse/plugins/org.apache.lucene_1.3.1 -@dirrm eclipse/plugins/org.apache.ant_1.6.2/lib -@dirrm eclipse/plugins/org.apache.ant_1.6.2/bin -@dirrm eclipse/plugins/org.apache.ant_1.6.2 -@dirrm eclipse/plugins -@dirrm eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%% -@dirrm eclipse/features/org.eclipse.platform_%%RELEASEVERSION%% -@dirrm eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%% -@dirrm eclipse/features/org.eclipse.pde_%%RELEASEVERSION%% -@dirrm eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%% -@dirrm eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%% -@dirrm eclipse/features -@dirrm eclipse/configuration -@dirrm eclipse diff --git a/java/eclipse/scripts/configure b/java/eclipse/scripts/configure deleted file mode 100644 index efe9aa66ca51..000000000000 --- a/java/eclipse/scripts/configure +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -copy_dir() -{ - srcdir=$1 - dstdir=$2 - - - rm -rf "$dstdir" - cp -r "$srcdir" "$dstdir" || exit 1 - - if [ -d "$dstdir" ] - then - find "$dstdir" -name \*.so -delete - find "$dstdir" -name \*.so.\* -delete - find "$dstdir" -type f -print0 | \ - xargs -0 sed -i '.bak' 's/linux/freebsd/g; s/Linux/FreeBSD/g' - find "$dstdir" -name \*.bak -delete - fi -} - -configure() -{ - # Copy the files and rename/change them appropriately - for src in $COPY_LIST - do - dst=`echo $src | sed 's/linux/freebsd/g; s/Linux/FreeBSD/g'` - echo Copying $src into $dst - copy_dir ${WRKSRC}/$src ${WRKSRC}/$dst - done - - # Determine the toolkit we must use - if [ "${ECLIPSE_WS}" = "motif" ]; then - ln -sf "${SWTMOTIF}" ${SWTSHORT} || exit 1 - ln -sf "${SWTMOTIFGTK}"/* ${SWTSHORT} || exit 1 - else - ln -sf "${SWTGTK}" ${SWTSHORT} || exit 1 - fi - ln -sf "${SWTCOMMON}"/* ${SWTSHORT} || exit 1 - ln -sf "${SWTAWT}"/* ${SWTSHORT} || exit 1 - ln -sf "${SWTMOZ}"/* ${SWTSHORT} || exit 1 - ln -sf "${SWTPROG}"/* ${SWTSHORT} || exit 1 - - - # Use our own files to drive the build - cp ${FILESDIR}/Makefile ${WRKSRC} || exit 1 - cp ${FILESDIR}/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml ${WRKSRC} \ - || exit 1 - cp ${FILESDIR}/assemble.org.eclipse.sdk.freebsd.motif.x86.xml ${WRKSRC} \ - || exit 1 - - # Copy a schell script template - cp ${FILESDIR}/eclipse.in ${WRKSRC} || exit 1 - - # Avoid the spaces-in-path patching problem by copying directly - cp ${FILESDIR}/make_gtk.mak "${SWTGTK}" || exit 1 - cp ${FILESDIR}/make_gtk.xml "${SWTGTK}" || exit 1 - cp ${FILESDIR}/build.sh "${SWTGTK}" || exit 1 - cp ${FILESDIR}/make_freebsd.mak "${SWTMOTIF}" || exit 1 - cp ${FILESDIR}/make_motif.xml "${SWTMOTIF}" || exit 1 - cp ${FILESDIR}/swt-motif-build.sh "${SWTMOTIF}/build.sh" || exit 1 - - # Avoid a patching problem by copying directly - cp ${FILESDIR}/update-build.xml "${WRKSRC}/plugins/org.eclipse.update.core.freebsd/src/build.xml" || exit 1 - - find ${WRKSRC} -name \*.so -delete - find ${WRKSRC} -name \*.so.\* -delete -} - -COPY_LIST=" -plugins/org.eclipse.jface/src/org/eclipse/jface/resource/jfacefonts_linux.properties -plugins/org.eclipse.jface/src/org/eclipse/jface/resource/jfacefonts_linux_gtk.properties -plugins/platform-launcher/library/motif/make_linux.mak -assemble.org.eclipse.sdk.linux.motif.x86.xml -assemble.org.eclipse.sdk.linux.gtk.x86.xml - -plugins/org.eclipse.pde.source.linux.gtk.x86 -plugins/org.eclipse.pde.source.linux.motif.x86 -plugins/org.eclipse.platform.source.linux.motif.x86 -plugins/org.eclipse.swt.motif/os/linux -plugins/org.eclipse.jdt.source.linux.motif.x86 -plugins/org.eclipse.platform.source.linux.gtk.x86 -plugins/org.eclipse.jdt.source.linux.gtk.x86 -plugins/org.eclipse.update.core.linux -plugins/org.eclipse.update.core.linux/os/linux -plugins/org.eclipse.core.resources.linux -plugins/org.eclipse.core.resources.linux/os/linux -plugins/org.eclipse.swt.gtk/os/linux -plugins/platform-launcher/bin/linux -features/org.eclipse.platform/linux.motif -" - -SWTGTK="${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library" -SWTMOTIF="${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT PI/motif/library" -SWTMOTIFGTK="${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT PI/motif_gtk/library" -SWTCOMMON="${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT/common/library" -SWTAWT="${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT AWT/gtk/library" -SWTMOZ="${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT Mozilla/common/library" -SWTPROG="${WRKSRC}/plugins/org.eclipse.swt/Eclipse SWT Program/gnome/library" -SWTSHORT="${WRKSRC}/plugins/org.eclipse.swt/Eclipse_SWT" - -configure -exit 0 diff --git a/java/eclipse/scripts/pre-patch b/java/eclipse/scripts/pre-patch new file mode 100644 index 000000000000..fdc249b6a75d --- /dev/null +++ b/java/eclipse/scripts/pre-patch @@ -0,0 +1,104 @@ +#!/bin/sh +# $FreeBSD$ + +copy_file() +{ + srcfile="$1" + dstfile="$2" + + rm -f $dstfile + cat "$srcfile" | sed 's/linux/freebsd/g; s/Linux/FreeBSD/g; s/x86_64/amd64/g' > "$dstfile" +} + +copy_dir() +{ + srcdir="$1" + dstdir="$2" + + rm -rf "$dstdir" + cp -r "$srcdir" "$dstdir" || exit 1 + + if [ -d "$dstdir" ] + then + find "$dstdir" -name \*.so -delete + find "$dstdir" -name \*.so.\* -delete + find "$dstdir" -type f -print0 | \ + xargs -0 sed -i '.bak' 's/linux/freebsd/g; s/Linux/FreeBSD/g; s/x86_64/amd64/g' + find "$dstdir" -name \*.bak -delete + fi +} + +prepare_files() +{ + mkdir ${WRKSRC}/features/org.eclipse.platform.launchers/bin/gtk/freebsd + + # Copy the files and rename/change them appropriately + for src in $COPY_LIST + do + dst=`echo $src | sed 's/linux/freebsd/g; s/Linux/FreeBSD/g; s/x86_64/amd64/g'` + echo Copying $src into $dst + if [ -d ${WRKSRC}/$src ] + then + copy_dir ${WRKSRC}/$src ${WRKSRC}/$dst + else + copy_file ${WRKSRC}/$src ${WRKSRC}/$dst + fi + done + + # Files with spaces in their path... + src="${SWTGTK}/make_linux.mak" + dst=`echo $src | sed 's/linux/freebsd/g; s/Linux/FreeBSD/g; s/x86_64/amd64/g'` + echo Copying $src into $dst + copy_file "${WRKSRC}/$src" "${WRKSRC}/$dst" + + src="${SWTMOTIF}/make_linux.mak" + dst=`echo $src | sed 's/linux/freebsd/g; s/Linux/FreeBSD/g; s/x86_64/amd64/g'` + echo Copying $src into $dst + copy_file "${WRKSRC}/$src" "${WRKSRC}/$dst" + + find ${WRKSRC} -name \*.so -delete + find ${WRKSRC} -name \*.so.\* -delete +} + +COPY_LIST=" +assemble.org.eclipse.sdk.linux.gtk.x86.xml +assemble.org.eclipse.sdk.linux.gtk.x86_64.xml +assemble.org.eclipse.sdk.linux.motif.x86.xml +features/org.eclipse.platform/about_files/linux.gtk.x86 +features/org.eclipse.platform/about_files/linux.gtk.x86_64 +features/org.eclipse.platform/about_files/linux.motif.x86 +features/org.eclipse.platform.launchers/bin/gtk/linux/x86 +features/org.eclipse.platform.launchers/bin/gtk/linux/x86_64 +features/org.eclipse.platform.launchers/bin/motif/linux +features/org.eclipse.platform.launchers/library/gtk/make_linux.mak +features/org.eclipse.platform.launchers/library/motif/make_linux.mak +plugins/org.eclipse.core.resources.linux +plugins/org.eclipse.core.resources.linux/os/linux +plugins/org.eclipse.core.resources.linux/os/linux/x86 +plugins/org.eclipse.core.resources.linux/os/linux/x86_64 +plugins/org.eclipse.jdt.source.linux.gtk.x86 +plugins/org.eclipse.jdt.source.linux.gtk.x86_64 +plugins/org.eclipse.jdt.source.linux.motif.x86 +plugins/org.eclipse.jface/src/org/eclipse/jface/resource/jfacefonts_linux.properties +plugins/org.eclipse.jface/src/org/eclipse/jface/resource/jfacefonts_linux_gtk.properties +plugins/org.eclipse.pde.source.linux.gtk.x86 +plugins/org.eclipse.pde.source.linux.gtk.x86_64 +plugins/org.eclipse.pde.source.linux.motif.x86 +plugins/org.eclipse.platform.source.linux.gtk.x86 +plugins/org.eclipse.platform.source.linux.gtk.x86_64 +plugins/org.eclipse.platform.source.linux.motif.x86 +plugins/org.eclipse.rcp.source.linux.gtk.x86 +plugins/org.eclipse.rcp.source.linux.gtk.x86_64 +plugins/org.eclipse.rcp.source.linux.motif.x86 +plugins/org.eclipse.swt.gtk.linux.x86 +plugins/org.eclipse.swt.gtk.linux.x86_64 +plugins/org.eclipse.swt.motif.linux.x86 +plugins/org.eclipse.update.core.linux +plugins/org.eclipse.update.core.linux/os/linux +" + +SWTGTK="plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library" +SWTMOTIF="plugins/org.eclipse.swt/Eclipse SWT PI/motif/library" + +prepare_files +exit 0 |