Ports that break with "WITH_MYSQL_VER= 52" (i.e., mariadb)

2011-06-07 Thread Doug Barton

Howdy,

Recently I split the mariadb port into -client and -server versions. My 
next step was going to be adding support for this to bsd.databases.mk, 
but it turns out that it's already there, cleverly hidden behind:

.if (${MYSQL_VER} == "52")

So I tested some stuff setting "WITH_MYSQL_VER= 52" in /etc/make.conf, 
including INDEX building, and I got 8 errors, in 2 categories. The first 
are ports that set a direct dependency such as this:
RUN_DEPENDS+= 
${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql${MYSQL_VER}-server


That fails when MYSQL_VER= 52 since there is no such port directory. I 
*think* (and please forgive me if I'm wrong) that these can be fixed by 
changing that dependency to:


USE_MYSQL=  server

and/or eliminating the specific dependency when that's already set. If 
I'm wrong, please feel free to suggest the correct solution. :)


The other category of problems is a direct dependency on:
${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql${MYSQL_VER}

As far as I can see this one can/should be solved by adding a slave port 
for databases/p5-DBD-mysql52, which I just did.


I'd really like to see mariadb become a first-class provider for mysql, 
and it seems that we're really close to making that happen.


mysql${MYSQL_VER}-server errors:
audio/squeezeboxserver
databases/akonadi
games/mkgichessclub
security/pantera
www/b2evolution

p5-DBD-mysql52 errors:
multimedia/zoneminder
ports-mgmt/tinderbox
ports-mgmt/tinderbox-devel


--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: gnutls update fails on libchamplain

2011-06-07 Thread Andrew W. Nosenko
On Tue, Jun 7, 2011 at 23:10, Johan Hendriks  wrote:
> Hello all,
>
> I did an cvsup  of the ports tree, read /usr/ports/UPDATING.
> It tells me that the new gnutls requires the following comman.
> portmaster -r gnutls.
>
> but this is the result

[skip]

> /libexec/ld-elf.so.1: Shared object "libgnutls.so.40" not found, required by 
> "libchamplain-0.8.so.1"

It is the reason (above).

For some reason the installed version of libchamplain-0.8.so.1 was
catched and passed to the linker (instead of freshly built one).

Workaround: deinstall already installed package and rebuild the new

-- 
Andrew W. Nosenko 
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Next commit... please correct UPDATING

2011-06-07 Thread Doug Barton

On 06/07/2011 12:08, Jason Hellenthal wrote:


ports,

On Tue, Jun 07, 2011 at 03:06:28PM -0400, Jason Hellenthal wrote:


Ports, etc...

Would whomever checks in the next commit please fix the following
entries in UPDATING

20110503
20110427




This was also supposed to say... by adding a ':' to the date sequence.


Done, thanks.


Doug

--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: gnutls update fails on libchamplain

2011-06-07 Thread Michal Varga
On Tue, 2011-06-07 at 20:10 +, Johan Hendriks wrote:
> Hello all,
> 
> I did an cvsup  of the ports tree, read /usr/ports/UPDATING.
> It tells me that the new gnutls requires the following comman.
> portmaster -r gnutls.
> 
> but this is the result
> 
> gmake[3]: Entering directory 
> `/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1/champlain-gtk'
>   CC gtk-champlain-embed.lo
>   CC champlain-gtk-enum-types.lo
>   CC champlain-gtk-marshal.lo
>   CCLD   libchamplain-gtk-0.8.la
>   GISCAN GtkChamplain-0.8.gir
> /usr/include/machine/endian.h:123: syntax error, unexpected '{' in ' return 
> (__extension__ ({ register __uint64_t __X = (_x); __asm ("bswap %0" : "+r" 
> (__X)); __X; }));' at '{'
> /usr/include/machine/endian.h:123: syntax error, unexpected ';' in ' return 
> (__extension__ ({ register __uint64_t __X = (_x); __asm ("bswap %0" : "+r" 
> (__X)); __X; }));' at ';'
> /usr/include/machine/endian.h:130: syntax error, unexpected '{' in ' return 
> (__extension__ ({ register __uint32_t __X = (_x); __asm ("bswap %0" : "+r" 
> (__X)); __X; }));' at '{'
> /usr/include/machine/endian.h:130: syntax error, unexpected ';' in ' return 
> (__extension__ ({ register __uint32_t __X = (_x); __asm ("bswap %0" : "+r" 
> (__X)); __X; }));' at ';'
> /libexec/ld-elf.so.1: Shared object "libgnutls.so.40" not found, required by 
> "libchamplain-0.8.so.1"


This is caused by libchamplain, for some reason, linking against itself,
or more specifically, the already installed libchamplain-0.8.so.1
library (which in turn you had linked against libgnutls.so.40).

For a quick fix (I didn't investigate further), simply remove the old
installed port, and let the new one build in clean environment:

# cd /usr/ports/graphics/libchamplain/
# make deinstall clean
# make install clean


m.

-- 
Michal Varga,
Stonehenge (Gmail account)


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


gnutls update fails on libchamplain

2011-06-07 Thread Johan Hendriks
Hello all,

I did an cvsup  of the ports tree, read /usr/ports/UPDATING.
It tells me that the new gnutls requires the following comman.
portmaster -r gnutls.

but this is the result

gmake[3]: Entering directory 
`/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1/champlain-gtk'
  CC gtk-champlain-embed.lo
  CC champlain-gtk-enum-types.lo
  CC champlain-gtk-marshal.lo
  CCLD   libchamplain-gtk-0.8.la
  GISCAN GtkChamplain-0.8.gir
/usr/include/machine/endian.h:123: syntax error, unexpected '{' in ' return 
(__extension__ ({ register __uint64_t __X = (_x); __asm ("bswap %0" : "+r" 
(__X)); __X; }));' at '{'
/usr/include/machine/endian.h:123: syntax error, unexpected ';' in ' return 
(__extension__ ({ register __uint64_t __X = (_x); __asm ("bswap %0" : "+r" 
(__X)); __X; }));' at ';'
/usr/include/machine/endian.h:130: syntax error, unexpected '{' in ' return 
(__extension__ ({ register __uint32_t __X = (_x); __asm ("bswap %0" : "+r" 
(__X)); __X; }));' at '{'
/usr/include/machine/endian.h:130: syntax error, unexpected ';' in ' return 
(__extension__ ({ register __uint32_t __X = (_x); __asm ("bswap %0" : "+r" 
(__X)); __X; }));' at ';'
/libexec/ld-elf.so.1: Shared object "libgnutls.so.40" not found, required by 
"libchamplain-0.8.so.1"
Command 
'['/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1/champlain-gtk/tmp-introspectti31Fw/GtkChamplain-0.8',
 
'--introspect-dump=/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1/champlain-gtk/tmp-introspectti31Fw/types.txt,/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1/champlain-gtk/tmp-introspectti31Fw/dump.xml']'
 returned non-zero exit status 1
gmake[3]: *** [GtkChamplain-0.8.gir] Error 1
gmake[3]: Leaving directory 
`/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1/champlain-gtk'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory 
`/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1/champlain-gtk'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory 
`/usr/ports/graphics/libchamplain/work/libchamplain-0.8.1'
gmake: *** [all] Error 2
*** Error code 1

What can i do about this.

thanks for your time..

regards,
Johan

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: portlint warnings after mariadb changes

2011-06-07 Thread Ruslan Mahmatkhanov

07.06.2011 23:24, Ruslan Mahmatkhanov пишет:

Hi there.

After today's mariadb changes `portlint -A` in any
port's directory saying this:

"""
FATAL: /usr/ports/MOVED: malformed line at 2218.
=> databases/mariadb||2011-06-06|Split into
databases/mariadb-{client|scripts|server}
"""

As far i understand it's because matching brackets
in the above mentioned message. Can this be fixed?


Just see that it was fixed by Doug. Sorry for the noise.

--
Regards,
Ruslan
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


portlint warnings after mariadb changes

2011-06-07 Thread Ruslan Mahmatkhanov

Hi there.

After today's mariadb changes `portlint -A` in any
port's directory saying this:

"""
FATAL: /usr/ports/MOVED: malformed line at 2218.
 => databases/mariadb||2011-06-06|Split into 
databases/mariadb-{client|scripts|server}

"""

As far i understand it's because matching brackets
in the above mentioned message. Can this be fixed?

--
Regards,
Ruslan
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [sane-devel] [PATCH] Patch to fix genesys backends on 64-bit machines

2011-06-07 Thread stef
Le mardi 7 juin 2011 13:12:18 Hans Petter Selasky, vous avez écrit :
> Hi,
> 
> Pointers cannot be casted to int. Specify missing return type of function.
> 
> KWM: Can you add patch to:
> 
> /usr/ports/graphics/sane-backends/files/patch-backend__genesys.c
> 
> --HPS

Hello,

I think your source version is not up to date. Please use SANE 1.0.22 
at 
least where this is fixed.

Regards,
Stef
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Next commit... please correct UPDATING

2011-06-07 Thread Jason Hellenthal

ports,

On Tue, Jun 07, 2011 at 03:06:28PM -0400, Jason Hellenthal wrote:
> 
> Ports, etc...
> 
> Would whomever checks in the next commit please fix the following
> entries in UPDATING
> 
> 20110503
> 20110427
> 
> 

This was also supposed to say... by adding a ':' to the date sequence.


-- 

"Unity can only be manifested by the Binary. Unity itself and the idea of Unity 
are already two." -- Buddha

 Regards, (jhell)
 Jason Hellenthal

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: FreeBSD Port: bugzilla-3.6.4_1

2011-06-07 Thread Sergey Skvortsov
On 04.06.2011 3:03, Wilson, Bruce wrote:
> Hi,
> 
> I’m gearing up to move my older Bugzilla install to a new server, and
> was hoping to install Bugzilla 4 via port.  Is this update on your
> radar?  At a guess, will it be available in weeks, months, or next year?

Committed.

-- 
Sergey Skvortsov
mailto: s...@freebsd.org
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


[PATCH] Patch to fix genesys backends on 64-bit machines

2011-06-07 Thread Hans Petter Selasky
Hi,

Pointers cannot be casted to int. Specify missing return type of function.

KWM: Can you add patch to:

/usr/ports/graphics/sane-backends/files/patch-backend__genesys.c

--HPS
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Re: OO 3.3.0 fails to build "moz" module on amd64 8-STABLE

2011-06-07 Thread Maho NAKATA
thanks, committed,
best regards,
 nakata maho

From: Maho NAKATA 
Subject: Re: OO 3.3.0 fails to build "moz" module on amd64 8-STABLE
Date: Tue, 07 Jun 2011 13:40:24 +0900 (JST)

> Hi Don,
> 
> Great. I'll apply as soon as possible.
> thanks,
>  Nakata Maho
> 
> From: Don Lewis 
> Subject: Re: OO 3.3.0 fails to build "moz" module on amd64 8-STABLE
> Date: Mon, 06 Jun 2011 17:30:04 -0700 (PDT)
> 
>> On  8 May, Maho NAKATA wrote:
>>> Hi
>>> 
>>> Thanks for your report. I'm aware of this issue, since my OOo build
>>> is broken at the same place. Sorry and I don't have a clue yet, but,
>>> I guess from folllowing error message, somehow moz module
>>> invoke make instead gmake.
 Makefile:83: *** missing separator.  Stop.
>> 
>> Actually, I think a gmake update is causing this problem.  See this
>> OpenOffice.org ticket:
>> 
>> 
>> It looks like it's fixed in OOo 3.4, but in the meantime I've been able
>> to build 3.3 with the following patch (from Comment #1 on the ticket)
>> added to the files/ directory for the port:
>> 
>> ===
>> --- moz/makefile.mk.orig 2011-01-18 05:34:25.0 -0800
>> +++ moz/makefile.mk  2011-04-29 16:04:37.0 -0700
>> @@ -86,7 +86,8 @@
>>  patches/dtoa.patch \
>>  patches/respect_disable_pango.patch \
>>  patches/arm_build_fix.patch \
>> -patches/link_fontconfig.patch
>> +patches/link_fontconfig.patch \
>> +patches/brokenmakefile.patch
>>  
>>  # This file is needed for the W32 build when BUILD_MOZAB is set
>>  # (currently only vc8/vs2005 is supported when BUILD_MOZAB is set)
>> --- /dev/null2011-04-29 16:00:00.0 -0700
>> +++ moz/patches/brokenmakefile.patch 2011-04-29 16:04:55.0 -0700
>> @@ -0,0 +1,13 @@
>> +--- misc/mozilla/mailnews/extensions/smime/build/Makefile.in
>> 2010-09-04 16:00:38.0 +0100
>>  misc/build/mozilla/mailnews/extensions/smime/build/Makefile.in  
>> 2010-09-04 16:02:24.0 +0100
>> +@@ -79,10 +79,6 @@
>> +$(DIST)/lib/$(LIB_PREFIX)msgsmime_s.$(LIB_SUFFIX) \
>> +$(NULL)
>> + 
>> +-ifndef MOZ_STATIC_MAIL_BUILD
>> +-SHARED_LIBRARY_LIBS + = $(DIST)/lib/$(LIB_PREFIX)msgbsutl_s.$(LIB_SUFFIX)
>> +-endif
>> +-
>> + EXTRA_DSO_LDOPTS = \
>> +$(LIBS_DIR) \
>> +$(EXTRA_DSO_LIBS) \
>> ===
>> 
> ___
> freebsd-openoff...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-openoffice
> To unsubscribe, send any mail to "freebsd-openoffice-unsubscr...@freebsd.org"
> 
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


PowerMath - Your Virtual Mathematics Assistant

2011-06-07 Thread PowerMath
PowerMath - Your Virtual Mathematics Assistant  
  
  Mathematics Made Easy  
Summer   2011   





Computer   Animation   Lesson-Shows :
Courses in Arithmetic, Algebra, Geometry, Trigonometry, Pre-Calculus, Calculus, 
Probability and Statistics
covering Middle-School, High-School and University level Mathematics, for 
Students and Instructors.



  
  

  
  

PowerMath   has   been   featured   on 

among   others . . . 
  
  


Exclusion:
If you no longer wish to receive email from PowerClassroom Software invoke < 
delete >   Please do NOT reply to this e-mail if you wish to unsubscribe, 
instead use the instructions above.   Any/all information collected from our 
customers will not be sold, shared, or rented. 

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: [owm-users] Fw: Re: openwebmail not work

2011-06-07 Thread Alex Teslik
On Tue, 31 May 2011 10:16:46 -0200, Nilton Jose Rizzo wrote
> > Software error:
> >
> > Use of uninitialized value $_ in scalar chomp at
> > /home2/www/.com.br/cgi-bin/openwebmail/shares/getmsgids.pl line 244.

This is fixed rev 598:

http://openwebmail.acatysmoof.com/dev/svnweb/index.pl/openwebmail/revision/?rev=598

Thanks,
Alex
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"