Re: graphviz -- can't fetch

2013-03-16 Thread Bernt Hansson
2013-03-16 01:09, Ronald F. Guilmette skrev: In message 44k3p8pa1t@lowell-desk.lan, Lowell Gilbert freebsd-ports-lo...@be-well.ilk.org wrote: Ronald F. Guilmette r...@tristatelogic.com writes: What gives? Where is the missing .gz file? % portupgrade graphics/graphviz ... === Found

How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
I need to compile a source not in the ports tree. The source needs to use the gcc compiler (I have lang gcc (46) installed). Sourec make file complains it cannot find gcc46. To test, I placed in my environment: setenv CC gcc46 setenv CXX g++46 setenv CPP cpp46 When I do cc -v I still get clang

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Matthew Seaman
On 16/03/2013 13:01, Beeblebrox wrote: I need to compile a source not in the ports tree. The source needs to use the gcc compiler (I have lang gcc (46) installed). Sourec make file complains it cannot find gcc46. gcc46 will be /usr/local/bin/gcc46 -- it could be that /usr/local/bin isn't on

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
I changed env as proposed, to full path (path is correct, btw) CC=/usr/local/bin/gcc46 CXX=/usr/local/bin/g++46 CPP=/usr/local/bin/cpp46 I also placed same in the Makefile of 3rd party source. you need to .. persuade your Makefile to run a different compiler. That's exactly what I want to do,

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Florent Peterschmitt
If you put these environment variables into make.conf ? Le 16/03/2013 13:53, Beeblebrox a écrit : I changed env as proposed, to full path (path is correct, btw) CC=/usr/local/bin/gcc46 CXX=/usr/local/bin/g++46 CPP=/usr/local/bin/cpp46 I also placed same in the Makefile of 3rd party source.

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Eitan Adler
On 16 March 2013 09:01, Beeblebrox zap...@berentweb.com wrote: I need to compile a source not in the ports tree. The source needs to use the gcc compiler (I have lang gcc (46) installed). Sourec make file complains it cannot find gcc46. To test, I placed in my environment: setenv CC gcc46

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Erich Dollansky
Hi, On Sat, 16 Mar 2013 10:04:41 -0400 Eitan Adler li...@eitanadler.com wrote: On 16 March 2013 09:01, Beeblebrox zap...@berentweb.com wrote: I need to compile a source not in the ports tree. The source needs to use the gcc compiler (I have lang gcc (46) installed). Sourec make file

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
Hi, I tried both CC= /usr/local/bin/gcc46 and export CC= /usr/local/bin/gcc46, but no good. Per request, enclosing the default Makefile; I'm trying to compile OpenWRT on native FreeBSD. https://docs.google.com/file/d/0Bxs_eepbMt6qV3Y3bDFtbnBUZFk/edit?usp=sharing The Makefile is unable to locate

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
If interested, OpenWRT build requirements: http://wiki.openwrt.org/doc/howto/buildroot.exigence My work so far: https://forum.openwrt.org/viewtopic.php?pid=194727#p194727 -- View this message in context:

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
@ Erich: The alias setting is the only thing that has worked so far in shell environment - too bad it did no good for the Makefile's dependents test (which is what I really want to get done). Neither of these gave correct output at cc -v nor CC -v setenv CC /usr/local/bin/gcc46 setenv cc

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Erich Dollansky
Hi, On Sat, 16 Mar 2013 07:37:38 -0700 (PDT) Beeblebrox zap...@berentweb.com wrote: @ Erich: The alias setting is the only thing that has worked so far in shell environment - too bad it did no good for the Makefile's dependents test (which is what I really want to get done). this is also my

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
@David: Ooops, forgot that bit. My shell also csh. Info for un-modified environment (no extra setenv or alias) uname - 10.0-CURRENT #1 r248212, amd64 The extras you asked for: $which make - /usr/bin/make $ make -V CC - cc $ echo $CC - CC: Undefined variable. $ setenv CC /usr/local/bin/gcc46

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
I just remembered: The last time I tried to compile this, I was on 9-STABLE as I recall and I did not have any of the specific problems I am running into now. Everything went much more smoothly back then. -- View this message in context:

Re: CFT mplayer and mencoder snapshot

2013-03-16 Thread Waitman Gobble
Thomas Zander thomas.e.zan...@googlemail.com wrote .. On 10 March 2013 20:51, Thomas Zander thomas.e.zan...@googlemail.com wrote: I have prepared a recent snapshot of mplayer and mencoder. The port itself has changed quite a bit, therefore testing and reporting (and patches if necessary)

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Chris Rees
On 16 March 2013 15:22, Beeblebrox zap...@berentweb.com wrote: I just remembered: The last time I tried to compile this, I was on 9-STABLE as I recall and I did not have any of the specific problems I am running into now. Everything went much more smoothly back then. The way I've always used

FreeBSD Port: x11-themes/gtk-equinox-engine

2013-03-16 Thread Marco Dola
Hi there, I had this error when I tried to install x11-themes/gtk-equinox-engine: In file included from ./src/animation.c:31:0: /usr/include/glib-2.0/glib/gtimer.h:28:2: error: #error Only glib.h can be included directly. So I replaced glib/gtimer.h with glib.h and it works. Tnx Marco P.S. You

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
Sorry, not working - I know it normally would. make -DUSE_GCC=any Build dependency: Please install the GNU C Compiler (gcc). Build dependency: Please install the GNU C++ Compiler (g++). Build dependency: Please install ncurses. (Missing libncurses.so or ncurses.h) Build dependency: Please install

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Beeblebrox
Neither works, both give same fail: make -USE_GCC=any make -DUSE_GCC=any -- View this message in context: http://freebsd.1045724.n5.nabble.com/How-can-I-switch-compiler-from-clang-to-gcc46-tp5796040p5796085.html Sent from the freebsd-ports mailing list archive at Nabble.com.

Re: How can I switch compiler from clang to gcc46?

2013-03-16 Thread Chris Rees
On 16 March 2013 16:33, Beeblebrox zap...@berentweb.com wrote: Neither works, both give same fail: make -USE_GCC=any make -DUSE_GCC=any Don't use -D; Make options are not the same as cc. Try: make USE_GCC=any Chris ___ freebsd-ports@freebsd.org

pkg-plist error

2013-03-16 Thread Gary J. Hayers
I am trying to write a port, however when I install the port I get an error telling me that... Correct pkg-plist sequence to create group(s) and user(s) This does not seem to be right, what is the correct way to nullify this? Many thanks -- Regards, Gary J. Hayers g...@hayers.org PGP

Re: pkg-plist error

2013-03-16 Thread Chris Rees
On 16 March 2013 16:53, Gary J. Hayers g...@hayers.org wrote: I am trying to write a port, however when I install the port I get an error telling me that... Correct pkg-plist sequence to create group(s) and user(s) This does not seem to be right, what is the correct way to nullify this?

Re: graphviz -- can't fetch

2013-03-16 Thread Kevin Oberman
On Sat, Mar 16, 2013 at 12:26 AM, Bernt Hansson b...@bananmonarki.se wrote: 2013-03-16 01:09, Ronald F. Guilmette skrev: In message 44k3p8pa1t.fsf@lowell-desk.**lan, Lowell Gilbert freebsd-ports-local@be-well.**ilk.orgfreebsd-ports-lo...@be-well.ilk.org wrote: Ronald F. Guilmette

Re: graphviz -- can't fetch

2013-03-16 Thread Lowell Gilbert
Ronald F. Guilmette r...@tristatelogic.com writes: Well, I just did try that and I am still getting the same result. In fact, it appears to me that the entire web site of www.graphviz.org is most seriously and entirely baroque I mean busted, kaput, blewie, snafued, hosed in a major way.

Re: pkg-plist error

2013-03-16 Thread Gary J. Hayers
On 16/03/2013 18:54, Chris Rees wrote: On 16 March 2013 16:53, Gary J. Hayers g...@hayers.org wrote: I am trying to write a port, however when I install the port I get an error telling me that... Correct pkg-plist sequence to create group(s) and user(s) This does not seem to be right, what is

Re: is it a good idea to overwrite GCC_DEFAULT_VERSION= in Mk/bsd.gcc.mk?

2013-03-16 Thread Bryan Drewery
On 2/11/2013 9:21 AM, Gerald Pfeifer wrote: Hi Anton, On Thu, 7 Feb 2013, Anton Shterenlikht wrote: Right now the default GCC is GCC_DEFAULT_VERSION=4.6 For some time lang/gcc46 doesn't build for me on ia64. However, lang/gcc47 and lang/gcc48 do. There are quite a few ports which I

Re: graphviz -- can't fetch

2013-03-16 Thread Ronald F. Guilmette
FWIW, I have fetched the distfile repeatedly over the past three days on a variety of systems with no problems at all. Slow at between 600 and 800 kBps with my very well connected work system at the high end and my home system at the low end. I am also getting it from www.graphviz.org. Sounds

Re: graphviz -- can't fetch

2013-03-16 Thread Ronald F. Guilmette
In message 44mwu3rqxn@lowell-desk.lan, you wrote: I suspect that it's tied to the package building cluster problems. I'm not sure who to ask directly, so a PR is the right approach. For the enlightment of those not in the know (which includes myself) please do elaborate. What am the

Re: graphviz -- can't fetch

2013-03-16 Thread Lowell Gilbert
Ronald F. Guilmette r...@tristatelogic.com writes: In message 44mwu3rqxn@lowell-desk.lan, you wrote: I suspect that it's tied to the package building cluster problems. I'm not sure who to ask directly, so a PR is the right approach. For the enlightment of those not in the know (which

Gnustep group

2013-03-16 Thread Chris Petrik
Looking at the current state of gnustep and I am wondering if any commiters would be interested in creating a gnustep group/team? as a lot of ports have no maintainer and would be nice if there was a ML and other means for gnustep ? Chris ___

Re: Gnustep group

2013-03-16 Thread Waitman Gobble
Chris Petrik c...@sdf.org wrote .. Looking at the current state of gnustep and I am wondering if any commiters would be interested in creating a gnustep group/team? as a lot of ports have no maintainer and would be nice if there was a ML and other means for gnustep ? Chris