From owner-freebsd-eclipse@FreeBSD.ORG Mon Sep 27 11:06:52 2010 Return-Path: Delivered-To: freebsd-eclipse@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10FCA106567A for ; Mon, 27 Sep 2010 11:06:52 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D968B8FC22 for ; Mon, 27 Sep 2010 11:06:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o8RB6pSZ023420 for ; Mon, 27 Sep 2010 11:06:51 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o8RB6pmv023417 for freebsd-eclipse@FreeBSD.org; Mon, 27 Sep 2010 11:06:51 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 27 Sep 2010 11:06:51 GMT Message-Id: <201009271106.o8RB6pmv023417@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-eclipse@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-eclipse@FreeBSD.org X-BeenThere: freebsd-eclipse@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "FreeBSD users of eclipse EDI, tools, rich client apps & ports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2010 11:06:52 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/149704 eclipse java/eclipse: plugins doesn't work in eclipse-3.5.2_1 o ports/149513 eclipse java/eclipse can not compile with 'WITH_TESTS=true' 2 problems total. From owner-freebsd-eclipse@FreeBSD.ORG Thu Sep 30 19:35:20 2010 Return-Path: Delivered-To: freebsd-eclipse@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50DA31065672 for ; Thu, 30 Sep 2010 19:35:20 +0000 (UTC) (envelope-from Thomas.Gellekum@gmx.de) Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.22]) by mx1.freebsd.org (Postfix) with SMTP id AFDB58FC22 for ; Thu, 30 Sep 2010 19:35:19 +0000 (UTC) Received: (qmail invoked by alias); 30 Sep 2010 19:08:38 -0000 Received: from xdsl-84-44-251-34.netcologne.de (EHLO siegel.tg.intern) [84.44.251.34] by mail.gmx.net (mp018) with SMTP; 30 Sep 2010 21:08:38 +0200 X-Authenticated: #18235045 X-Provags-ID: V01U2FsdGVkX1+cIoJkDVacZvgq/4tgjUKDZ7kyahvthgTaC2r+To 2qrEFTjKIoxDH1 From: Thomas Gellekum To: freebsd-eclipse@FreeBSD.org User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) Date: Thu, 30 Sep 2010 21:08:37 +0200 Message-ID: <86k4m3m4lm.fsf@siegel.tg.intern> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Y-GMX-Trusted: 0 Cc: Subject: JUnit4 jar overwritten by JUnit3 jar during installation of java/eclipse X-BeenThere: freebsd-eclipse@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "FreeBSD users of eclipse EDI, tools, rich client apps & ports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Sep 2010 19:35:20 -0000 --=-=-= Moin, I noticed that JUnit4 doesn't work out of the box with the eclipse port. The reason seems to be the loop in the do-install target, which installs jars from ${BUILD_WRKSRC} to the final installation directory. I've removed that loop and instead added "-L" to the "cp -R" command in build.xml. Please test the attached patch, I could easily be missing something here. I guess eclipse-devel will need a similar change. tg --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=eclipse-port.diff Index: Makefile =================================================================== RCS file: /home/ncvs/ports/java/eclipse/Makefile,v retrieving revision 1.71 diff -u -r1.71 Makefile --- Makefile 7 Sep 2010 08:40:13 -0000 1.71 +++ Makefile 30 Sep 2010 18:51:49 -0000 @@ -183,6 +183,7 @@ .endfor @${REINPLACE_CMD} -e "s+=/usr/share/java/junit.jar+=${BUILD_WRKSRC}/bundles/junit.jar+" ${BUILD_WRKSRC}/nonosgidependencies.properties @${REINPLACE_CMD} -e "s+=/usr/share/java/junit4.jar+=${BUILD_WRKSRC}/bundles/junit4.jar+" ${BUILD_WRKSRC}/nonosgidependencies.properties + @${REINPLACE_CMD} -e "s+/usr/share/java/junit4.jar+${BUILD_WRKSRC}/bundles/junit4.jar+" ${BUILD_WRKSRC}/build.xml .if defined(WITH_TESTS) @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${ANT} ${MAKE_ARGS} applyTestPatches) .endif @@ -208,16 +209,6 @@ ${BUILD_WRKSRC}/eclipse.tmp .endif @${INSTALL_SCRIPT} ${WRKSRC}/eclipse.tmp ${PREFIX}/bin/${PORTNAME} - @for f in `ls ${BUILD_WRKSRC}/bundles/*.jar`; do \ - BASE=`basename $$f`; \ - FILES=`find ${PORTDESTDIR}/plugins/ -name "$$BASE"`; \ - if [ ! -z "$$FILES" ]; then \ - for s in $$FILES; do \ - ${RM} "$$s"; \ - ${INSTALL_DATA} "$$f" "$$s"; \ - done; \ - fi; \ - done @${PREFIX}/bin/${PORTNAME} -initialize -consolelog -@update-desktop-database @(cd ${PREFIX}; ${FIND} -s lib/${PORTNAME} -not -type d) >> ${TMPPLIST} Index: files/patch-eclipse-build =================================================================== RCS file: /home/ncvs/ports/java/eclipse/files/patch-eclipse-build,v retrieving revision 1.1 diff -u -r1.1 patch-eclipse-build --- files/patch-eclipse-build 10 Jul 2010 19:34:26 -0000 1.1 +++ files/patch-eclipse-build 30 Sep 2010 18:52:39 -0000 @@ -122,7 +122,7 @@ - - - -+ ++ + + --=-=-=-- From owner-freebsd-eclipse@FreeBSD.ORG Thu Sep 30 23:19:46 2010 Return-Path: Delivered-To: freebsd-eclipse@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B4691065674 for ; Thu, 30 Sep 2010 23:19:46 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from smtp-out2.tiscali.nl (smtp-out2.tiscali.nl [195.241.79.177]) by mx1.freebsd.org (Postfix) with ESMTP id 3C15B8FC17 for ; Thu, 30 Sep 2010 23:19:45 +0000 (UTC) Received: from [212.123.145.58] (helo=sjakie.klop.ws) by smtp-out2.tiscali.nl with esmtp (Exim) (envelope-from ) id 1P1SCB-0008Gd-O8; Fri, 01 Oct 2010 01:05:47 +0200 Received: from 212-123-145-58.ip.telfort.nl (localhost [127.0.0.1]) by sjakie.klop.ws (Postfix) with ESMTP id D2477E548; Fri, 1 Oct 2010 01:05:37 +0200 (CEST) Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes To: freebsd-eclipse@freebsd.org, glewis@eyesbeyond.com, "John Schneider" References: <201008291749.01728.js@jschneider.com> Date: Fri, 01 Oct 2010 01:05:36 +0200 MIME-Version: 1.0 From: "Ronald Klop" Message-ID: In-Reply-To: <201008291749.01728.js@jschneider.com> User-Agent: Opera Mail/10.62 (FreeBSD) Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: Eclipse 3.6 (Helios) Alpha Port X-BeenThere: freebsd-eclipse@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "FreeBSD users of eclipse EDI, tools, rich client apps & ports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Sep 2010 23:19:46 -0000 On Sun, 29 Aug 2010 23:49:01 +0200, John Schneider =20 wrote: > I've attached an initial port for Eclipse 3.6 (Helios). All the dist =20 > info has > been updated correctly and all dist files can be downloaded. I updated = =20 > all > patch files to the best of my ability, but run into an issue that's =20 > preventing > me from testing further. > > make-patch is currently hanging after update of > plugins/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh I confirme= d =20 > the > file is in fact updated by a non-freebsd patch, so I'm not sure if it's > hanging on this file, or the one after. > > Hopefully someone else in the group can take a look at this and figure = =20 > it out. > > > John Schneider I guess the attachment didn't survive the mailinglist filters. Ronald.