Removal of java/jde: There is a pr for an update

2011-11-02 Thread Jan Henrik Sylvester
Hi Doug! You just removed java/jde, but you forgot to look at prs for a fix. There is one (author Cced) with an update to a version that does fetch: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/158204 Since the new version is called jdee, maybe java/jde is really obsolete, but not

Re: mail/rspamd

2011-11-02 Thread Vsevolod Stakhov
On 11/02/2011 01:34 AM, Doug Barton wrote: mail/rspamd has an optional dependency on security/p5-Digest-SHA256, which has the following: DEPRECATED= use the builtin Digest::SHA instead Do you think you could update the port? Surely. I'll remove this dependency at the next release

Re: /usr/ports/textproc/py-libxml2 broken

2011-11-02 Thread Ruslan Mahmatkhanov
Unga wrote on 02.11.2011 16:02: - Original Message - From: Ruslan Mahmatkhanovcvs-...@yandex.ru To: Ungaunga...@yahoo.com Cc: freebsd-ports-b...@freebsd.orgfreebsd-ports-b...@freebsd.org Sent: Wednesday, November 2, 2011 10:58 AM Subject: Re: /usr/ports/textproc/py-libxml2 broken Unga

portupgrade failure: kde4-4.7.2 -- kde4-4.7.2_1

2011-11-02 Thread Conrad J. Sabatier
OK, I know this is just a meta package, and not really essential to my survival, but nonetheless, I'm hitting a brick wall with this one: - -- The following OPTIONAL packages could NOT be located on your system. --

ktorrent-4.1.2_1 runtime failure at startup

2011-11-02 Thread Conrad J. Sabatier
Something very odd is going on here (whitespace between error messages inserted by me for clarity): $ ktorrent KGlobal::locale::Warning your global KLocale is being recreated with a valid main component instead of a fake component, this usually means you tried to call i18n related functions

Disregard original post (was Re: portupgrade failure: kde4-4.7.2 -- kde4-4.7.2_1)

2011-11-02 Thread Conrad J. Sabatier
Nevermind. Turning off the KDEWEBDEV option in x11/kde4 allowed the upgrade to succeed (forgot I had turned this on yesterday out of curiosity). I suppose, then, that the subject line of this thread should have been Build failure in www/kdewebdev4 instead. Sorry for the noise. -- Conrad J.

Re: portupgrade failure: kde4-4.7.2 -- kde4-4.7.2_1

2011-11-02 Thread Chris Rees
On 2 November 2011 15:05, Conrad J. Sabatier conr...@cox.net wrote: OK, I know this is just a meta package, and not really essential to my survival, but nonetheless, I'm hitting a brick wall with this one: - -- The

Re: Removal of java/jde: There is a pr for an update

2011-11-02 Thread Doug Barton
On 11/02/2011 02:11, Jan Henrik Sylvester wrote: Hi Doug! You just removed java/jde, but you forgot to look at prs for a fix. There is one (author Cced) with an update to a version that does fetch: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/158204 Since the new version is called

Re: mail/rspamd

2011-11-02 Thread Doug Barton
On 11/02/2011 03:42, Vsevolod Stakhov wrote: On 11/02/2011 01:34 AM, Doug Barton wrote: mail/rspamd has an optional dependency on security/p5-Digest-SHA256, which has the following: DEPRECATED= use the builtin Digest::SHA instead Do you think you could update the port? Surely. I'll

upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Doug Sampson
I am having trouble updating the postgresql-contrib port from version 8.4.8 to 8.4.9. Below is what I'm seeing when I attempt to upgrade: corvus-root@/usr/ports/lang/php52# portmaster postgresql-contrib ..snip.. cc -O2 -pipe -fno-strict-aliasing -Wall -Wmissing-prototypes - Wpointer-arith

Re: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Ruslan Mahmatkhanov
Doug Sampson wrote on 02.11.2011 22:53: I am having trouble updating the postgresql-contrib port from version 8.4.8 to 8.4.9. Below is what I'm seeing when I attempt to upgrade: corvus-root@/usr/ports/lang/php52# portmaster postgresql-contrib ..snip.. cc -O2 -pipe -fno-strict-aliasing -Wall

RE: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Doug Sampson
As far i understand you built postgresql ports with enabled option GSSAPI (it is off by default). Disable it and rebuild postgresql. This gssapi support is broken. Okay, so I uninstalled postgresql84-server, did a 'make config' to exclude GSSAPI support, rebuilt the port from scratch. Now

Re: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Ruslan Mahmatkhanov
Doug Sampson wrote on 03.11.2011 00:08: As far i understand you built postgresql ports with enabled option GSSAPI (it is off by default). Disable it and rebuild postgresql. This gssapi support is broken. Okay, so I uninstalled postgresql84-server, did a 'make config' to exclude GSSAPI

RE: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Doug Sampson
Try to build postgresql84-client with explicit disabling GSSAPI: make -DWITHOUT_GSSAPI install. Nope, doesn't work. This is what I did: cetus-root@/usr/ports/databases/postgresql84-server# make -DWITHOUT_GSSAPI install clean ..snip.. === Cleaning for postgresql-server-8.4.9_2

Re: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Johan Hendriks
Doug Sampson schreef: Try to build postgresql84-client with explicit disabling GSSAPI: make -DWITHOUT_GSSAPI install. Nope, doesn't work. This is what I did: cetus-root@/usr/ports/databases/postgresql84-server# make -DWITHOUT_GSSAPI install clean ..snip.. === Cleaning for

RE: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Sergio de Almeida Lenzi
Try this; pkg_delete -f postgresql-server postgresql-client make sure it has been removed... than. cd /usr/ports/databases/postgresql84-server make clean config In the configuration menu UNMARK GSSAPI then cd /usr/ports/databases/postgresql84-client make clean config In the configuration

RE: upgrade of postgresql-contrib from 8.4.8 to 8.4.9 fails

2011-11-02 Thread Doug Sampson
You are rebuilding the server, you need to rebuild the client part. # cd /usr/ports/databases/postgresql84-client # make config unselect GSSAPI # make FORCE_PKG_REGISTER=yes install clean cetus-root@/usr/ports/databases/postgresql84-server# cd ../postgresql84-client

Unable to build swt-devel on systems with webkit-gtk2 installed

2011-11-02 Thread Kevin Oberman
Looking back in the archive I see several messages about problems building x11-toolkits/swt-devel on systems with webkit-gtk2 installed. All fail with: [exec] cc -shared -s -o libswt-awt-gtk-3659.so swt_awt.o -L/usr/local/diablo-jdk1.6.0/jre/lib/i386 -ljawt [exec] make: don't know how

Re: Unable to build swt-devel on systems with webkit-gtk2 installed

2011-11-02 Thread Conrad J. Sabatier
On Wed, 2 Nov 2011 15:56:26 -0700 Kevin Oberman kob6...@gmail.com wrote: Looking back in the archive I see several messages about problems building x11-toolkits/swt-devel on systems with webkit-gtk2 installed. All fail with: [exec] cc -shared -s -o libswt-awt-gtk-3659.so swt_awt.o

Re: Unable to build swt-devel on systems with webkit-gtk2 installed

2011-11-02 Thread Eitan Adler
On Wed, Nov 2, 2011 at 9:10 PM, Conrad J. Sabatier conr...@cox.net wrote: On Wed, 2 Nov 2011 15:56:26 -0700 Kevin Oberman kob6...@gmail.com wrote: Looking back in the archive I see several messages about problems building x11-toolkits/swt-devel on systems with webkit-gtk2 installed. This is

Re: Unable to build swt-devel on systems with webkit-gtk2 installed

2011-11-02 Thread Conrad J. Sabatier
On Wed, 2 Nov 2011 21:56:27 -0400 Eitan Adler li...@eitanadler.com wrote: On Wed, Nov 2, 2011 at 9:10 PM, Conrad J. Sabatier conr...@cox.net wrote: On Wed, 2 Nov 2011 15:56:26 -0700 Kevin Oberman kob6...@gmail.com wrote: Looking back in the archive I see several messages about problems

dconf gconf wtfconf ?

2011-11-02 Thread Jason Hellenthal
Can anyone explain the difference or need for both of these ? ports/devel/gconf -( Should'nt this be the only one needed ? ) ports/devel/dconf I just noticed dconf installed on my system. Both of these have the same WWW: of: http://www.gnome.org/projects/gconf/

Re: dconf gconf wtfconf ?

2011-11-02 Thread Sergio de Almeida Lenzi
Não é possível abrir diretório Can anyone explain the difference or need for both of these ? ports/devel/gconf -( Should'nt this be the only one needed ? ) ports/devel/dconf I just noticed dconf installed on my system. Both of these have the same WWW: of: