Re: [EMAIL PROTECTED]: freehdl-0.0.4_1 failed on amd64 7]
Kris Kennaway wrote: > FYI; can you please investigate and/or report to the developers? If > you are already aware of this problem but do not yet have a fix, > please mark the port BROKEN in the appropriate case, so that users do > not unexpectedly encounter it. > > See http://pointyhat.freebsd.org for the full log. > > Thanks, > Kris I cannot find a PR about this. So I'm just replying to the mail. The problem only appears when the gcc4 branch is used. The freehdl developers as well as me are mystified, because the gcc output does not contain any hints about the nature of the problem. I didn't find a way to check the gcc version in bsd.gcc.mk, so I don't know how to mark it broken properly. I had something like: .if GCC_VERSION >= 40 BROKEN= gcc3 branch required .endif in mind. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: [EMAIL PROTECTED]: freehdl-0.0.4_1 failed on amd64 7]
On 8/26/07, [LoN]Kamikaze <[EMAIL PROTECTED]> wrote: > Kris Kennaway wrote: > > FYI; can you please investigate and/or report to the developers? If > > you are already aware of this problem but do not yet have a fix, > > please mark the port BROKEN in the appropriate case, so that users do > > not unexpectedly encounter it. > > > > See http://pointyhat.freebsd.org for the full log. > > > > Thanks, > > Kris > > I cannot find a PR about this. So I'm just replying to the mail. > > The problem only appears when the gcc4 branch is used. The freehdl > developers > as well as me are mystified, because the gcc output does not contain any > hints > about the nature of the problem. > > I didn't find a way to check the gcc version in bsd.gcc.mk, so I don't know > how > to mark it broken properly. > > I had something like: > > .if GCC_VERSION >= 40 > BROKEN= gcc3 branch required > .endif > > in mind. Just add the following after bsd.ports.pre.mk: if ${OSVERSION} >= 700042 USE_GCC=3.4 .endif This will allow the port to build on 7-CURRENT, and give you and the freehdl developers time to determine why the port fails to build with GCC 4.x OSVERSION=700042 is when GCC 4.x was imported into -CURRENT. Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Eclipse 3.2.2 on 7.0-CURRENT
Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have to do anything special? BTW, I'm using the latest diablo-jdk and jre. Thanks. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
OpenOffice 2.2.1 Packages for 7.0-CURRENT
Anyone know where I can download OpenOffice 2.2.1 packages for 7.0-CURRENT? I tried the 6.2 package, but it didn't work. Thanks. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Eclipse 3.2.2 on 7.0-CURRENT
On Sunday 26 August 2007 10:47:27 Indigo 23 wrote: > Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have > to do anything special? > > BTW, I'm using the latest diablo-jdk and jre. > I have been running 3.2.2 from ports for some time without any problem. However I am really waiting with baited breath for Eclipse 3.3. (Europe) which is due fairly soon because we are using Europa on all other platforms so freebsd ports are ia bit behind here with that version. That is not surprising because there 3.3 is a lot of work for the port maintainer. I am not running 7.00 so I can't help you with your specifics but I would see no reason why 3.2.2 should run any differently on 7.00 . david ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Eclipse 3.2.2 on 7.0-CURRENT
Indigo 23 wrote: Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have to do anything special? BTW, I'm using the latest diablo-jdk and jre. Thanks. AFAIK diablo-jdk / -jre don't work on 7-CURRENT, because the FreeBSD foundation hasn't built a release yet for 7-CURRENT (because it's not a real release yet). HTH, -Garrett ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Eclipse 3.2.2 on 7.0-CURRENT
On 8/26/07, Rene Ladan <[EMAIL PROTECTED]> wrote: > Indigo 23 schreef: > > Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have > > to do anything special? > > > > BTW, I'm using the latest diablo-jdk and jre. > > > I got Eclipse 3.2.2 running on 7.0-CURRENT (i386) using java/jdk16. Be sure > to add > -fno-tree-vrp to the CFLAGS in your /etc/make.conf when compiling jdk16. > > Diablo-jdk doesn't run Eclipse on my box. Whenever I start it, I get back an > error 13. I was using the diablo-jdk/jre, and the strange thing is that NetBeans (5.5.1) seems to run fine with it, but Eclipse spits out this error message during startup: "JVM terminated. Exit code=1 /usr/local/bin/java -Xms40m -Xmx256m -jar /usr/local/eclipse/startup.jar -os freebsd -ws gtk -arch x86 -launcher /usr/local/eclipse/eclipse -name Eclipse -showsplash 600 -exitdata 20017 -vm /usr/local/bin/java -vmargs -Xms40m -Xmx256m -jar /usr/local/eclipse/startup.jar" I'll try with jdk16 as you suggested. Thanks. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Eclipse 3.2.2 on 7.0-CURRENT
I was just wondering how to switch between diablo/jdk16 on a system-wide level? So that when invoking javac/java, it invokes the one I have set (either jdk16 or diablo). Also, how can I force Eclipse to build with JDK16 rather than diablo? Thanks. On 8/26/07, Indigo 23 <[EMAIL PROTECTED]> wrote: > On 8/26/07, Rene Ladan <[EMAIL PROTECTED]> wrote: > > Indigo 23 schreef: > > > Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have > > > to do anything special? > > > > > > BTW, I'm using the latest diablo-jdk and jre. > > > > > I got Eclipse 3.2.2 running on 7.0-CURRENT (i386) using java/jdk16. Be > > sure to add > > -fno-tree-vrp to the CFLAGS in your /etc/make.conf when compiling jdk16. > > > > Diablo-jdk doesn't run Eclipse on my box. Whenever I start it, I get back > > an error 13. > > I was using the diablo-jdk/jre, and the strange thing is that NetBeans > (5.5.1) seems to run fine with it, but Eclipse spits out this error > message during startup: > > "JVM terminated. Exit code=1 > /usr/local/bin/java > -Xms40m > -Xmx256m > -jar /usr/local/eclipse/startup.jar > -os freebsd > -ws gtk > -arch x86 > -launcher /usr/local/eclipse/eclipse > -name Eclipse > -showsplash 600 > -exitdata 20017 > -vm /usr/local/bin/java > -vmargs > -Xms40m > -Xmx256m > -jar /usr/local/eclipse/startup.jar" > > I'll try with jdk16 as you suggested. > > Thanks. > ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Eclipse 3.2.2 on 7.0-CURRENT
Greg Lewis wrote: On Sun, Aug 26, 2007 at 01:12:50PM -0700, Garrett Cooper wrote: Indigo 23 wrote: Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have to do anything special? BTW, I'm using the latest diablo-jdk and jre. Thanks. AFAIK diablo-jdk / -jre don't work on 7-CURRENT, because the FreeBSD foundation hasn't built a release yet for 7-CURRENT (because it's not a real release yet). It should work with the compat6x port. FYI, the fact that 7.x hasn't had a release yet pretty much rules out doing a binary for it. Threaded library stuff was broken in 7.x for Java until as of late (IIRC). You may want to inspect those threads in current@ to determine whether or not it's possible or ask on the list. -Garrett ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Eclipse 3.2.2 on 7.0-CURRENT
On Sun, Aug 26, 2007 at 01:12:50PM -0700, Garrett Cooper wrote: > Indigo 23 wrote: > >Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have > >to do anything special? > > > >BTW, I'm using the latest diablo-jdk and jre. > > > >Thanks. >AFAIK diablo-jdk / -jre don't work on 7-CURRENT, because the FreeBSD > foundation hasn't built a release yet for 7-CURRENT (because it's not a > real release yet). It should work with the compat6x port. FYI, the fact that 7.x hasn't had a release yet pretty much rules out doing a binary for it. -- Greg Lewis Email : [EMAIL PROTECTED] Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : [EMAIL PROTECTED] ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: OpenOffice 2.2.1 Packages for 7.0-CURRENT
On Sun, Aug 26, 2007 at 01:44:23PM -0400, Indigo 23 wrote: > Anyone know where I can download OpenOffice 2.2.1 packages for 7.0-CURRENT? > I tried the 6.2 package, but it didn't work. I was able to build it recently and put a copy at: http://people.freebsd.org/~brooks/stuff/openoffice.org-2.2.1.tbz -- Brooks pgp50pzbrCIGW.pgp Description: PGP signature
Re: Eclipse 3.2.2 on 7.0-CURRENT
Thanks for the info. Do you know if there is there any way to choose which JDK to use when building/running things like Eclipse? I have both JDK16 and diablo-jdk15 installed. On 8/26/07, Garrett Cooper <[EMAIL PROTECTED]> wrote: > Greg Lewis wrote: > > On Sun, Aug 26, 2007 at 01:12:50PM -0700, Garrett Cooper wrote: > > > >> Indigo 23 wrote: > >> > >>> Anyone have Eclipse 3.2.2 running on 7.0-CURRENT, if so, did you have > >>> to do anything special? > >>> > >>> BTW, I'm using the latest diablo-jdk and jre. > >>> > >>> Thanks. > >>> > >>AFAIK diablo-jdk / -jre don't work on 7-CURRENT, because the FreeBSD > >> foundation hasn't built a release yet for 7-CURRENT (because it's not a > >> real release yet). > >> > > > > It should work with the compat6x port. > > > > FYI, the fact that 7.x hasn't had a release yet pretty much rules out > > doing a binary for it. > > Threaded library stuff was broken in 7.x for Java until as of late > (IIRC). You may want to inspect those threads in current@ to determine > whether or not it's possible or ask on the list. > -Garrett > ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: OpenOffice 2.2.1 Packages for 7.0-CURRENT
On Sun, 26 Aug 2007, Brooks Davis wrote: On Sun, Aug 26, 2007 at 01:44:23PM -0400, Indigo 23 wrote: Anyone know where I can download OpenOffice 2.2.1 packages for 7.0-CURRENT? I tried the 6.2 package, but it didn't work. I was able to build it recently and put a copy at: http://people.freebsd.org/~brooks/stuff/openoffice.org-2.2.1.tbz Just out of interest: Do we have anything like this for amd64, too? I would like to use the 7.0 branch as soon as it is ready (or even before), but I need openoffice.org . Greetings, Uli. Peter Ulrich Kruppa Wuppertal Germany ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"