Re: octave-forge on FreeBSD 7.0

2007-11-22 Thread Mark Linimon
> IMHO, octave-forge should be merged into octave itself,
> and relese version of octave and corrsponding octave-forge is old.
> I think this is a temporal situation. Once octave will be updated
> octave-forge will also be updated, and I believe octave-forge
> will be built with gcc42.

OK, in that case, approved.

mcl
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: octave-forge on FreeBSD 7.0

2007-11-22 Thread Maho NAKATA
From: Mark Linimon <[EMAIL PROTECTED]>
Subject: Re: octave-forge on FreeBSD 7.0
Date: Wed, 21 Nov 2007 07:59:56 -0600

> I'd rather see USE_GCC set unconditionally, so that INDEX will
> be the same on 6 and 7.

Me too.

> Is there any hope of the software being updated?  My concern is
> that once we set this, we'll tend to forget about it later.

Yes.
IMHO, octave-forge should be merged into octave itself,
and relese version of octave and corrsponding octave-forge is old.
I think this is a temporal situation. Once octave will be updated
octave-forge will also be updated, and I believe octave-forge
will be built with gcc42.

Thanks,
-- Nakata Maho ([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: octave-forge on FreeBSD 7.0

2007-11-21 Thread Mark Linimon
On Sunday 18 November 2007, Maho NAKATA wrote:
> > How about doing something more simple like:
> >
> > .if ${OSVERSION} >= 700042
> > USE_GCC=3.4
> > .endif
> >
> > which works great in my situation.

I'd rather see USE_GCC set unconditionally, so that INDEX will
be the same on 6 and 7.

Is there any hope of the software being updated?  My concern is
that once we set this, we'll tend to forget about it later.

mcl
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: octave-forge on FreeBSD 7.0

2007-11-19 Thread Erwin Lansing
On Mon, Nov 19, 2007 at 01:24:30PM +0900, Maho NAKATA wrote:
> Dear portmgr@ and Stephen
> 
> Portmgr@:
> 
> Stephen Montgomery-Smith <[EMAIL PROTECTED]>
> reported that applying following patch will unbreak
> for FBSD7. Could you please approve my commit?
> 
> Index: Makefile
> ===
> RCS file: /home/pcvs/ports/math/octave-forge/Makefile,v
> retrieving revision 1.19
> diff -u -r1.19 Makefile
> --- Makefile1 Oct 2007 09:34:23 -   1.19
> +++ Makefile19 Nov 2007 04:22:31 -
> @@ -36,9 +36,7 @@
>  .include 
>  
>  .if ${OSVERSION} >= 700042
> -.if ${ARCH} == "amd64" || ${ARCH} == "sparc64"
> -BROKEN=Does not compile with GCC 4.2
> -.endif
> +USE_GCC=   3.4
>  .endif
>  
>  GNU_HOST=  ${ARCH}-portbld-freebsd${OSREL}
> cvs diff: Diffing files
> 
Approved.

-erwin



pgp8Qebhv95fZ.pgp
Description: PGP signature


Re: octave-forge on FreeBSD 7.0

2007-11-18 Thread Maho NAKATA
Dear portmgr@ and Stephen

Portmgr@:

Stephen Montgomery-Smith <[EMAIL PROTECTED]>
reported that applying following patch will unbreak
for FBSD7. Could you please approve my commit?

Index: Makefile
===
RCS file: /home/pcvs/ports/math/octave-forge/Makefile,v
retrieving revision 1.19
diff -u -r1.19 Makefile
--- Makefile1 Oct 2007 09:34:23 -   1.19
+++ Makefile19 Nov 2007 04:22:31 -
@@ -36,9 +36,7 @@
 .include 
 
 .if ${OSVERSION} >= 700042
-.if ${ARCH} == "amd64" || ${ARCH} == "sparc64"
-BROKEN=Does not compile with GCC 4.2
-.endif
+USE_GCC=   3.4
 .endif
 
 GNU_HOST=  ${ARCH}-portbld-freebsd${OSREL}
cvs diff: Diffing files


From: Stephen Montgomery-Smith <[EMAIL PROTECTED]>
Subject: octave-forge on FreeBSD 7.0
Date: Sun, 18 Nov 2007 21:45:15 -0600

Stephen:

> I noticed that you added lines like:
> 
> .if ${OSVERSION} >= 700042
> .if ${ARCH} == "amd64" || ${ARCH} == "sparc64"
> BROKEN= Does not compile with GCC 4.2
> .endif
> .endif

No, linimon added :)
Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Oct 1 09:34:23 2007 UTC (6 weeks, 6 days ago) by linimon
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +4 -2 lines

Mark as broken with gcc4.2 on 64-bit archs.  While here, remove obsolete
cruft.

> to the Makefile of math/octave-forge.  But it also doesn't build on my 
> i386 FreeBSD 7.0 machine.

:(

> How about doing something more simple like:
> 
> .if ${OSVERSION} >= 700042
> USE_GCC=  3.4
> .endif
> 
> which works great in my situation.

Thanks for your report. I ask portmgr@ for commit approval.

Thanks,
-- Nakata Maho ([EMAIL PROTECTED])
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


octave-forge on FreeBSD 7.0

2007-11-18 Thread Stephen Montgomery-Smith

Dear Maho,

I noticed that you added lines like:

.if ${OSVERSION} >= 700042
.if ${ARCH} == "amd64" || ${ARCH} == "sparc64"
BROKEN= Does not compile with GCC 4.2
.endif
.endif

to the Makefile of math/octave-forge.  But it also doesn't build on my 
i386 FreeBSD 7.0 machine.


How about doing something more simple like:

.if ${OSVERSION} >= 700042
USE_GCC=3.4
.endif

which works great in my situation.

Stephen
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"