Re: UPDATE: mozilla-firefox-1.5

2005-12-02 Thread Christian Weisgerber
Peter Strömberg [EMAIL PROTECTED] wrote:

 We'll have to add --enable-official-branding to CONFIGURE_ARGS
 to get the right brand.dtd file.

Yes, with that I get Firefox.

For me this 1.5 update is fine on amd64, i386, and sparc64.

-- 
Christian naddy Weisgerber  [EMAIL PROTECTED]



Re: UPDATE: mgetty+sendfax-1.1.34

2005-12-02 Thread Antoine Jacoutot
Selon Antoine Jacoutot [EMAIL PROTECTED]:
 A new version of mgetty+sendfax just came out. Here is diff to update the
 in-tree version.
 Tested under amd64/current.

Anyone to commit this ?

Thanks !

Antoine



Re: UPDATE: devel/p5-Graph

2005-12-02 Thread Jasper Lievisse Adriaanse
On Wed, 30 Nov 2005 09:13:40 +0100
steven mestdagh [EMAIL PROTECTED] wrote:

 On Tue, Nov 29, 2005 at 10:42:15PM +0100, Jasper Lievisse Adriaanse wrote:
  Hello,
  
  here's an update for devel/p5-Graph that takes it to version 0.68. This
  diff also fixes the MASTER_SITE and changes the RUN_DEPENDS into the
  BUILD_DEPENDS so that the configure script will find devel/p5-Heap.
  I also made myself maintainer.
 
 please leave RUN_DEPENDS as is and set BUILD_DEPENDS=${RUN_DEPENDS}
 
[...]

Like this?

Index: Makefile
===
RCS file: /cvs/ports/devel/p5-Graph/Makefile,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 Makefile
--- Makefile2005/03/03 01:02:40 1.1.1.1
+++ Makefile2005/12/02 16:30:02
@@ -3,23 +3,24 @@
 COMMENT=   graph data structures in perl
 
 PKG_ARCH=  *
-DISTNAME=  Graph-0.58
+DISTNAME=  Graph-0.68
 PKGNAME=   p5-${DISTNAME}
 CATEGORIES=perl5 devel
 
+MAINTAINER=Jasper Lievisse Adriaanse [EMAIL PROTECTED]
+
 # perl licence
 PERMIT_PACKAGE_CDROM=  Yes
 PERMIT_PACKAGE_FTP=Yes
 PERMIT_DISTFILES_CDROM=Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-# Should be there, but it's not yet
-#MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Graph/}
-MASTER_SITES=  http://search.cpan.org/CPAN/authors/id/J/JH/JHI/
+MASTER_SITES=  ${MASTER_SITE_PERL_CPAN:=Graph/}
 
 CONFIGURE_STYLE= perl
 
 RUN_DEPENDS=   :p5-Heap-*:devel/p5-Heap
-REGRESS_DEPENDS=:p5-Heap-*:devel/p5-Heap
+BUILD_DEPENDS= ${RUN_DEPENDS}
+REGRESS_DEPENDS= ${RUN_DEPENDS}
 
 .include bsd.port.mk
Index: distinfo
===
RCS file: /cvs/ports/devel/p5-Graph/distinfo,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 distinfo
--- distinfo2005/03/03 01:02:40 1.1.1.1
+++ distinfo2005/12/02 16:30:02
@@ -1,4 +1,4 @@
-MD5 (Graph-0.58.tar.gz) = 140c9507e860d9a6f58093a32773b8f0
-RMD160 (Graph-0.58.tar.gz) = 85f47ad5ae7fd26f57c4207052bded1dce910951
-SHA1 (Graph-0.58.tar.gz) = 9038be937c292dac50931bb60403d1b938531a94
-SIZE (Graph-0.58.tar.gz) = 89904
+MD5 (Graph-0.68.tar.gz) = a91a26d9ee238488799fb9ea030705bc
+RMD160 (Graph-0.68.tar.gz) = 674402ac83e74e598e02514dd373dcf1452721d7
+SHA1 (Graph-0.68.tar.gz) = 7bf6d6b21a81e748bed54ffc9c955d50f36de1e2
+SIZE (Graph-0.68.tar.gz) = 96178

Cheers,
Jasper

 
 Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
 


-- 
Security is decided by quality -- Theo de Raadt


pgphyMazl0vcY.pgp
Description: PGP signature


Re: weird ksh eval behavior

2005-12-02 Thread Ralf Wildenhues
* Otto Moerbeek wrote on Thu, Dec 01, 2005 at 11:17:01PM CET:
 On Thu, 1 Dec 2005, Matthias Kilian wrote:
  On Thu, Dec 01, 2005 at 08:43:31PM +0100, Ralf Wildenhues wrote:
   With ash-0.3.8, OpenBSD 3.8 'sh' and 'ksh' PD KSH v5.2.14 99/07/13.2,
   
   $ false; eval 'foo=$?'; echo $foo
   0

  If POSIX mode is enabled by using `set -o posix' or setting
  POSIXLY_CORRECT, the above command line results in a `1'.

Ah, OK.  We should be trying to set the shell in posix mode anyway.
Now I understand why I never noticed this bug before testing on OpenBSD:
I've always been using pdksh as ksh, not as /bin/sh.  One difference is
that it won't set KSH_VERSION then, thus this snippet expanded from
M4SH_INIT:

| # Be Bourne compatible
| if test -n ${ZSH_VERSION+set}  (emulate sh) /dev/null 21; then
|   # ...
| elif test -n ${BASH_VERSION+set}${KSH_VERSION+set}  (set -o posix) 
/dev/null 21; then
|   set -o posix
| fi

won't trigger posix mode.  I wonder whether it should try to set posix
mode in any case, or whether we can find out without iff we're dealing
with pdksh without forking?  Suggested patch below.

 I think this is a bug in pdksh. It's a coincidence the posix flag has
 the correct behaviour.

I tend to agree.

Cheers, and thanks,
Ralf

* lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
posix' unconditionally, for pdksh in `native sh' emulation.

Index: lib/m4sugar/m4sh.m4
===
RCS file: /cvsroot/autoconf/autoconf/lib/m4sugar/m4sh.m4,v
retrieving revision 1.151
diff -u -r1.151 m4sh.m4
--- lib/m4sugar/m4sh.m4 6 Sep 2005 15:37:55 -   1.151
+++ lib/m4sugar/m4sh.m4 2 Dec 2005 16:04:57 -
@@ -169,7 +169,7 @@
   # is contrary to our usage.  Disable this feature.
   alias -g '${1+[EMAIL PROTECTED]}'='[EMAIL PROTECTED]'
   setopt NO_GLOB_SUBST
-elif test -n ${BASH_VERSION+set}${KSH_VERSION+set}  (set -o posix) 
/dev/null 21; then
+elif (set -o posix) /dev/null 21; then
   set -o posix
 fi
 BIN_SH=xpg4; export BIN_SH # for Tru64



Re: UPDATE: mgetty+sendfax-1.1.34

2005-12-02 Thread steven mestdagh
On Fri, Dec 02, 2005 at 04:19:20PM +, Antoine Jacoutot wrote:
 Selon Antoine Jacoutot [EMAIL PROTECTED]:
  A new version of mgetty+sendfax just came out. Here is diff to update the
  in-tree version.
  Tested under amd64/current.
 
 Anyone to commit this ?

seems ok on sparc64 and i386 (i can only perform regression tests).
any objections ?

steven

Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm



Re: NEW: math/blas

2005-12-02 Thread Jasper Lievisse Adriaanse
On Fri, 2 Dec 2005 17:09:02 +0100
steven mestdagh [EMAIL PROTECTED] wrote:

 here is a port for the blas library. builds fine on i386/amd64.
 please comment. note: you need a recent bsd.lib.mk to build this.
 
 
 The BLAS (Basic Linear Algebra Subprograms) are routines that provide
 standard building blocks for performing basic vector and matrix
 operations. The Level 1 BLAS perform scalar, vector and vector-vector
 operations, the Level 2 BLAS perform matrix-vector operations, and
 the Level 3 BLAS perform matrix-matrix operations. Because the BLAS
 are efficient, portable, and widely available, they are commonly used
 in the development of high quality linear algebra software, LAPACK
 for example.
 
 -- 
 steven

Compiles ok on i386. Tomorrow I'll do some more testing on this port.

Cheers,
Jasper
 
 
 
 
 Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
 
 


-- 
Security is decided by quality -- Theo de Raadt


pgpX8r4rxdASn.pgp
Description: PGP signature


Re: NEW: audacity-1.2.4

2005-12-02 Thread steven mestdagh
On Wed, Nov 30, 2005 at 10:48:47PM +0100, Antoine Jacoutot wrote:
 Hi...
 
 Here is a new audacity port.
 Tested under macppc/current.
 
 As usual, please test and comment/report.
 Thanks !

looks nice, but it dumps core on sparc64 upon selecting help-contents
in the menu.

Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm