Re: Qemu crash...

2006-11-23 Thread Scot Hetzel
On 11/23/06, Kris Kennaway <[EMAIL PROTECTED]> wrote: On Thu, Nov 23, 2006 at 01:23:01PM -0800, Bakul Shah wrote: > > The problem is that kldloading a module if it's already in the kernel > > can cause a panic. Also if the module becomes stale with respect to > > the running kernel, this approac

Re: pkgdb 2.2.2 is abysmally slow

2006-11-23 Thread vehemens
On Thu, Nov 23, 2006 at 21:36:53, Joe Marcus Clarke wrote: > The pkgdb that ships with portupgrade-2.2.2 is orders of magnitude > slower that that of 2.1.3.3. On a machine with 472 ports, if I upgrade > nspr the time to run pkgdb -fF after the upgrade is about ten minutes. > Prior to upgrading to

Re: New portmgr member: Pav Lucistnik

2006-11-23 Thread Vasil Dimov
On Thu, Nov 23, 2006 at 08:05:38PM +0100, Erwin Lansing wrote: > Portmgr is pleased to announce that Pav Lucistnik has accepted the > challenge of being a portmgr member. [...] > Wish him luck! Congratulations and good luck, Pav! :-) -- Vasil Dimov [EMAIL PROTECTED] % The only difference between

openoffice-2-devel compile error on [EMAIL PROTECTED]

2006-11-23 Thread Oliver Lehmann
Hi, latest openoffice-2-devel is again not compileable on [EMAIL PROTECTED]: Making: ../../unxfbsdx.pro/slo/unocontrolcontainer.obj g++41 -fmessage-length=0 -c -Os -fno-strict-aliasing -fvisibility=hidden -I. -I../../unxfbsdx.pro/inc/controls -I../inc -I../../inc/pch -I../../inc -I../../unx/

port - libwmf-0.2.8.4 (fwd)

2006-11-23 Thread Atom Smasher
-- ...atom http://atom.smasher.org/ 762A 3B98 A3C3 96C9 C6B7 582A B88D 52E4 D9F5 7808 - "Thoughtcrime was not a thing that could be concealed forever. You might dodge successfully for a while

Re: Please add Scribes to the ports!

2006-11-23 Thread Edwin Groothuis
On Thu, Nov 23, 2006 at 07:05:19PM -0500, Indigo 23 wrote: > Can you please add Scribes ( http://scribes.sourceforge.net/ ) to the ports? If you are brave, why not try it yourself? http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/ If you come to #bsdports on efnet, there are peo

Please add Scribes to the ports!

2006-11-23 Thread Indigo 23
Can you please add Scribes ( http://scribes.sourceforge.net/ ) to the ports? Thanks. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: recent build failures on pointyhat (libtool: link: cannot find the library `')

2006-11-23 Thread Joe Marcus Clarke
On Thu, 2006-11-23 at 17:33 -0500, Kris Kennaway wrote: > On Tue, Nov 14, 2006 at 01:44:14AM -0500, Kris Kennaway wrote: > > On Tue, Nov 14, 2006 at 10:41:37AM +0600, Max Khon wrote: > > > Hi! > > > > > > I've received a bunch of build failures on pointyhat with the same > > > error reason: > > >

Re: recent build failures on pointyhat (libtool: link: cannot find the library `')

2006-11-23 Thread Kris Kennaway
On Tue, Nov 14, 2006 at 01:44:14AM -0500, Kris Kennaway wrote: > On Tue, Nov 14, 2006 at 10:41:37AM +0600, Max Khon wrote: > > Hi! > > > > I've received a bunch of build failures on pointyhat with the same > > error reason: > > > > /bin/sh ./libtool --mode=link cc -O -pipe -pthread -o mtest m

Re: Qemu crash...

2006-11-23 Thread Kris Kennaway
On Thu, Nov 23, 2006 at 02:19:51PM -0800, Bakul Shah wrote: > > It "should" work, but people sometimes report that it doesn't > > (i.e. when they get the resulting panic). It at least needs to be > > investigated. > > What I suggested works for qemu since kldstat -m works for > aio and kqemu. Ma

Re: Qemu crash...

2006-11-23 Thread Bakul Shah
> It "should" work, but people sometimes report that it doesn't > (i.e. when they get the resulting panic). It at least needs to be > investigated. What I suggested works for qemu since kldstat -m works for aio and kqemu. May be people tried kldload without checking if the module existed? kldlo

Re: Qemu crash...

2006-11-23 Thread Kris Kennaway
On Thu, Nov 23, 2006 at 01:23:01PM -0800, Bakul Shah wrote: > > The problem is that kldloading a module if it's already in the kernel > > can cause a panic. Also if the module becomes stale with respect to > > the running kernel, this approach can cause a lot of confusion. > > I thought the follo

pkgdb 2.2.2 is abysmally slow

2006-11-23 Thread Joe Marcus Clarke
The pkgdb that ships with portupgrade-2.2.2 is orders of magnitude slower that that of 2.1.3.3. On a machine with 472 ports, if I upgrade nspr the time to run pkgdb -fF after the upgrade is about ten minutes. Prior to upgrading to portupgrade-2.2.2, the same operation took about three seconds. Th

Re: Qemu crash...

2006-11-23 Thread Bakul Shah
> I thought the following would do the trick: > > kldstat -m aio >/devnull 2>&1 || kldload aio Ugh I forgot about the -q switch. kldstat -qm aio || kldload aio ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinf

Re: Qemu crash...

2006-11-23 Thread Bakul Shah
> The problem is that kldloading a module if it's already in the kernel > can cause a panic. Also if the module becomes stale with respect to > the running kernel, this approach can cause a lot of confusion. I thought the following would do the trick: kldstat -m aio >/devnull 2>&1 || kldload

Re: Qemu crash...

2006-11-23 Thread Kris Kennaway
On Thu, Nov 23, 2006 at 01:07:28PM -0800, Bakul Shah wrote: > > You need to include AIO support in your kernel (or as a module). The > > port should be updated to mention this. > > May be it is time to add a /usr/local/etc/rc.d/qemu script > that kldload aio and kqemu (if it exists)? The problem

Re: Qemu crash...

2006-11-23 Thread Bakul Shah
> You need to include AIO support in your kernel (or as a module). The > port should be updated to mention this. May be it is time to add a /usr/local/etc/rc.d/qemu script that kldload aio and kqemu (if it exists)? ___ freebsd-ports@freebsd.org mailing

RE: FreeBSD Port: MailScanner-4.56.8

2006-11-23 Thread Koopmann, Jan-Peter
Problem is fixed and new version is committed... Thanks for the hint! ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Re: Qemu crash...

2006-11-23 Thread mva
Kris Kennaway <[EMAIL PROTECTED]>: [...] > You need to include AIO support in your kernel (or as a module). The > port should be updated to mention this. It mentions that. The problem is that the pkg-message is vanishing so fast if one uses 'make install clean' ;-). Regards Marcus _

Re: New portmgr member: Pav Lucistnik

2006-11-23 Thread Remko Lodder
On Thu, 2006-11-23 at 20:05 +0100, Erwin Lansing wrote: > Portmgr is pleased to announce that Pav Lucistnik has accepted the > challenge of being a portmgr member. Pav has been with the project for > a long time and is one of our most active committers and bug busters. > He has been working on the

Re: FreeBSD Port: MailScanner-4.56.8

2006-11-23 Thread Martin Wilke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 23 Nov 2006 20:56:40 +0100 "Koopmann, Jan-Peter" <[EMAIL PROTECTED]> wrote: > On Donnerstag, 23. November 2006 4:57 Chuck Rock wrote: > > > # Upgrading MailScanner.conf file... Please wait > > > > *** Error code 126 > > The tarball changed

RE: FreeBSD Port: MailScanner-4.56.8

2006-11-23 Thread Koopmann, Jan-Peter
On Donnerstag, 23. November 2006 4:57 Chuck Rock wrote: > # Upgrading MailScanner.conf file... Please wait > > *** Error code 126 The tarball changed and the upgrade_MailScanner_conf was/is missing the exec flag. I adjusted the Makefile. However I do not see a gnats-entry for my submission and

Re: New portmgr member: Pav Lucistnik

2006-11-23 Thread Florent Thoumie
Erwin Lansing wrote: > Portmgr is pleased to announce that Pav Lucistnik has accepted the > challenge of being a portmgr member. Pav has been with the project for > a long time and is one of our most active committers and bug busters. > He has been working on the ports infrastructure and will now

asterisk: crash with SYGSYS on 6.1-STABLE (i386)

2006-11-23 Thread Lev Serebryakov
Hello freebsd-ports, Fresh-installed asterisk (port version asterisk-1.2.13) crashes with default config with SIGSYS. hostname# uname -a FreeBSD HOSTNAME 6.1-STABLE FreeBSD 6.1-STABLE #0: Tue May 23 23:36:41 MSD 2006 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GATEWAY i386 hostname# asteris

Re: New portmgr member: Pav Lucistnik

2006-11-23 Thread Wilko Bulte
On Thu, Nov 23, 2006 at 08:05:38PM +0100, Erwin Lansing wrote.. > Portmgr is pleased to announce that Pav Lucistnik has accepted the > challenge of being a portmgr member. Pav has been with the project for > a long time and is one of our most active committers and bug busters. > He has been workin

Re: The truth about net-im/ymessenger

2006-11-23 Thread Kris Kennaway
On Thu, Nov 23, 2006 at 09:48:38AM -0800, Eric P. Scott wrote: > >This is not enough; since it is a 4.x binary it is linked against 4.x > >versions of those libraries, and if you try and run the binary on a > >modern version of FreeBSD then it will fail, since those libraries are > >incompatible wi

Re: New portmgr member: Pav Lucistnik

2006-11-23 Thread Marcus Alves Grando
Erwin Lansing wrote: Portmgr is pleased to announce that Pav Lucistnik has accepted the challenge of being a portmgr member. Pav has been with the project for a long time and is one of our most active committers and bug busters. He has been working on the ports infrastructure and will now be wor

Re: Qemu crash...

2006-11-23 Thread Kris Kennaway
On Thu, Nov 23, 2006 at 12:57:08PM +0100, Anders Troback wrote: > Hi, > > I have some problems with qemu-0.8.2s.20061102! > > When I start Qemu the Qemu console appears and crash: > > Bad system call (core dumped) > > I have tried on both 6.1 and 6.2! > > Anyone running Qemu on 6.2 or 6.1? Yo

New portmgr member: Pav Lucistnik

2006-11-23 Thread Erwin Lansing
Portmgr is pleased to announce that Pav Lucistnik has accepted the challenge of being a portmgr member. Pav has been with the project for a long time and is one of our most active committers and bug busters. He has been working on the ports infrastructure and will now be working with the other por

Build in progress with non-standard X11BASE

2006-11-23 Thread Kris Kennaway
Dear All, I have started a new package build with X11BASE=/usr/xorg, to shake out those ports that need to be brought into PREFIX-compliance to deal with the move of xorg into /usr/local. The current list of failures is here: http://pointyhat.freebsd.org/errorlogs/i386-5-exp-latest/ If a port

Re: The truth about net-im/ymessenger

2006-11-23 Thread Eric P. Scott
>This is not enough; since it is a 4.x binary it is linked against 4.x >versions of those libraries, and if you try and run the binary on a >modern version of FreeBSD then it will fail, since those libraries are >incompatible with their 4.x analogues. I just want to make it clear we're talking abo

Re: gnucash will not install/run.... [SOLVED]

2006-11-23 Thread Scott T. Hildreth
Just curious, why would gnucash2 depend on gal & libglade? Why wouldn't these be gal2 & libglade2? On Fri, 2006-11-17 at 05:25 +1100, Peter Jeremy wrote: > On Sun, 2006-Nov-12 11:49:45 -0600, Scott T. Hildreth wrote: > >On Sun, 2006-10-22 at 10:11 +1000, Peter Jeremy wrote: > >> I've come up wit

FreeBSD Port: MailScanner-4.56.8

2006-11-23 Thread Chuck Rock
Thanks for getting the update out, but there's a problem when installing. The make runs fine, but when make install, the following errors are displayed. I tried a manual make install on a FreeBSD 5.4 and also tried portupgrade utility on FreeBSD 6.1 system. Both errored at the same point, runni

Re: Fwd: [Jackit-devel] Jack still unusable on FreeBSD

2006-11-23 Thread Jack O'Quin
On 11/22/06, Ariff Abdullah <[EMAIL PROTECTED]> wrote: On Thu, 23 Nov 2006 03:44:20 + "mal content" <[EMAIL PROTECTED]> wrote: > Hello. I'm currently in dialogue with the developers of Jack > (audio/jackit) with a view to getting better Jack support on > FreeBSD. We've come up against an obst

Dialer for Freebsd

2006-11-23 Thread Peter Nyamukusa
Hi guys, Does any one know which internet dilers are availble in the ports for a ppp modem connection to an ISP I am currently using freebsd 5.5 Thanx in advance -- Peter Nyamukusa ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org

Ports with version numbers going backwards: devel/gnome2-hacker-tools

2006-11-23 Thread erwin
** The following ports have a version number that sorts before a previous one ** For many package tools to work correctly, it is of utmost importance that version numbers of a port form a monotonic increasing sequence over time. Refer to the FreeBSD Porter's Handbook, 'Package Naming Convention

Re: Qemu crash...

2006-11-23 Thread Anders Troback
On Thu, 23 Nov 2006 13:35:08 +0100 Marcus von Appen <[EMAIL PROTECTED]> wrote: > On, Thu Nov 23, 2006, Marcus von Appen wrote: > > [...] > > I had the same issue. Loading the aio kernel module should work > > around that issue: > > > > kldload aio > > ... > > qemu ... > > Which is also mentio

Re: Qemu crash...

2006-11-23 Thread Anders Troback
On Thu, 23 Nov 2006 13:22:12 +0100 Marcus von Appen <[EMAIL PROTECTED]> wrote: > On, Thu Nov 23, 2006, Anders Troback wrote: > > > Hi, > > > > I have some problems with qemu-0.8.2s.20061102! > > > > When I start Qemu the Qemu console appears and crash: > > > > Bad system call (core dumped) > >

Re: Qemu crash...

2006-11-23 Thread Marcus von Appen
On, Thu Nov 23, 2006, Marcus von Appen wrote: [...] > I had the same issue. Loading the aio kernel module should work around > that issue: > > kldload aio > ... > qemu ... Which is also mentioned in the pkg-message of the qemu port, by the way :-). Regards Marcus pgpLXizOfLFy2.pgp Descrip

Re: Qemu crash...

2006-11-23 Thread Stefan Sperling
On Thu, Nov 23, 2006 at 12:57:08PM +0100, Anders Troback wrote: > Hi, > > I have some problems with qemu-0.8.2s.20061102! > > When I start Qemu the Qemu console appears and crash: > > Bad system call (core dumped) You should ktrace this to get more information. > I have tried on both 6.1 and 6

Re: Qemu crash...

2006-11-23 Thread Marcus von Appen
On, Thu Nov 23, 2006, Anders Troback wrote: > Hi, > > I have some problems with qemu-0.8.2s.20061102! > > When I start Qemu the Qemu console appears and crash: > > Bad system call (core dumped) > > I have tried on both 6.1 and 6.2! > > Anyone running Qemu on 6.2 or 6.1? I had the same issue.

RE: Qemu crash...

2006-11-23 Thread Henry Acevedo
I got the same problem any help, please From: Anders Troback <[EMAIL PROTECTED]> To: FreeBSD Ports Subject: Qemu crash... Date: Thu, 23 Nov 2006 12:57:08 +0100 Hi, I have some problems with qemu-0.8.2s.20061102! When I start Qemu the Qemu console appears and crash: Bad system call (core d

Qemu crash...

2006-11-23 Thread Anders Troback
Hi, I have some problems with qemu-0.8.2s.20061102! When I start Qemu the Qemu console appears and crash: Bad system call (core dumped) I have tried on both 6.1 and 6.2! Anyone running Qemu on 6.2 or 6.1? Thanks! \\troback -- Anders Trobäck http://www.troback.com/ ===

Re: Request to remove www/emp from ports

2006-11-23 Thread Erwin Lansing
On Wed, Nov 22, 2006 at 08:12:23PM -0800, Allan Bowhill wrote: > Hello, Hi, > > Is it possible that someone could remove www/emp from the ports collection? > > I won't be supporting it anymore, and the ftp site will be offline > permanently at the end of this month. > We usually give users a w

Ports with version numbers going backwards: devel/gnome2-hacker-tools

2006-11-23 Thread erwin
** The following ports have a version number that sorts before a previous one ** For many package tools to work correctly, it is of utmost importance that version numbers of a port form a monotonic increasing sequence over time. Refer to the FreeBSD Porter's Handbook, 'Package Naming Convention