FreeBSD Port: piwik-0.2.37 piwik-0.2.37.zip: size mismatch: expected 2474475, actual 2474547

2009-05-18 Thread Fluid
make install clean

=> piwik-0.2.37.zip doesn't seem to exist in /usr/ports/distfiles/.

=> Attempting to fetch from http://builds.piwik.org/.

fetch: http://builds.piwik.org/piwik-0.2.37.zip: size mismatch: expected
2474475, actual 2474547

=> Attempting to fetch from
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/.

fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/piwik-0.2.37.zip:
File unavailable (e.g., file not found, no access)

=> Couldn't fetch it - please try to retrieve this

=> port manually into /usr/ports/distfiles/ and try again.

*** Error code 1

 

Stop in /usr/ports/www/piwik.

___
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"


ART-BLOXX ® The evolution of art!

2009-05-18 Thread ART-BLOXX� e . V . INFO

   [1]ART-BLOXX 

   painters * musicians * photographers * comedians * sculptors *
   designers * animation artists * actors * models * filmmakers
   For artists and art freaks of all categories!
   [2]JOIN NOW FOR FREE AND STARTUP!
   Your idea. Your art. Your chance.
   What you get?

   ° Your personal Me-Page

   ° Your personal art-bloxx email

   ° Unlimited space

   ° Contact to artists of all genres

   ° Chat. Comment. Rate. Share your art!

   Show the world yourself and your art!
   VIDEOS. PICTURES. WRITTEN STUFF. MUSIC. ONE PLATFORM.
   [3]www.art-bloxx.com ...ART UP!

   ___

   Maler * Musiker * Fotografen * Comedians * Bildhauer * Designer *
   Schauspieler * Animationskünstler * Models * Filmemacher
   Für Kunstbegeisterte und Künstler aller Sparten!
   [4]JETZT GRATIS ANMELDEN UND LOSLEGEN!
   Deine Idee. Deine Kunst. Deine Chance.
   Was bekommst du?

   ° Deine eigene Me-Page

   ° Deine eigene art-bloxx Mailadresse

   ° Unlimitierten Webspace

   ° Kontakt zu Künstlern aus allen Genres

   ° Chatte. Kommentiere. Bewerte. Und zeige deine Werke.

   Zeige dich und deine Kunst der Welt!
   VIDEOS. BILDER. TEXTE. MUSIK. EINE PLATTFORM.
   [5]www.art-bloxx.com ...ART UP!
   
   ART-BLOXX^®e.V.
   Internetplatform for musicians, artist, societies
   and art freaks of all categories
   Internetplattform für Musiker, Künstler und Vereine
   sowie für Musik-und Kunstbegeisterte aller Sparten
   p.Adr. Bernhard Arch
   Anzengruberweg 2/3
   Austria 8720-Knittelfeld
   ZVR: 227860531 | Sitz Knittelfeld
   Mail: [6]off...@art-bloxx.com
   Web: [7]www.art-bloxx.com
   
   Information (English):
   This mail should be a informative message. ART-BLOXX^® does not want
   to sell anything to you or get
   information about you. We got your mail out of a research in the World
   Wide Web(Art-Forum, Google search)
   If you wish, that we delete you from our Mail-Newsletter, please reply
   this message with the content
   *Delete newsletter* and you will be excluded from our newsletter
   immediately.
   Thank you. TEAM ART-BLOXX^®
   --
   Information (Deutsch):
   Diese Mail soll eine informative Nachricht darstellen. ART-BLOXX^®
   wird nicht versuchen Ihnen etwas
   zu verkaufen oder Information zu erlangen. Wir haben Ihre Mailadresse
   durch Nachforschungen im
   Internet erhalten. (Künstler-Foren, Google Suche).
   Sollten Sie in Zukunft keine Mails mehr erhalten wollen, beantworten
   Sie diese Mail mit folgendem Inhalt
   *Newsletter löschen* und Sie werden sofort aus unserem Newsletter
   entfernt.
   Herzlichen Dank. TEAM ART-BLOXX^®

References

   1. http://www.art-bloxx.com/
   2. http://www.art-bloxx.com/anmeldung.php
   3. http://www.art-bloxx.com/
   4. http://www.art-bloxx.com/anmeldung.php
   5. http://www.art-bloxx.com/
   6. mailto:off...@art-bloxx.com
   7. http://www.art-bloxx.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"


Minor USB related sysutils/hal patch

2009-05-18 Thread Hans Petter Selasky
Hi,

I've made some minor patches for sysutils/hal

If the device is detached during config read, the config can be NULL. Check 
that.

Make sure that we close the device handles as we go, to save number of open 
files. When the backend is freed any leftover file handles will get freed, so 
it is not absolutely needed to close the device handle in every case.

--HPS
diff -u -r files.org/patch-configure files/patch-configure
--- files.org/patch-configure	2009-05-18 09:35:47.0 +0200
+++ files/patch-configure	2009-05-18 10:23:05.0 +0200
@@ -286,7 +286,7 @@
 +main ()
 +{
 +return libusb20_dev_get_info ();
-+  ;
++ 
 +  return 0;
 +}
 +_ACEOF
@@ -325,8 +325,8 @@
 +if test $ac_cv_lib_usb_libusb20_dev_get_info = yes; then
 +  USE_LIBUSB=yes
 +else
-+  USE_LIBUSB=np
++  USE_LIBUSB=no
 +fi
 +
 +fi
diff -u -r files.org/patch-hald_freebsd_probing_probe-usb2-device.c files/patch-hald_freebsd_probing_probe-usb2-device.c
--- files.org/patch-hald_freebsd_probing_probe-usb2-device.c	2009-05-18 09:35:47.0 +0200
+++ files/patch-hald_freebsd_probing_probe-usb2-device.c	2009-05-18 09:45:27.0 +0200
@@ -96,9 +96,9 @@
 +  pcfg = libusb20_dev_alloc_config(pdev, curr_config);
 +  cdesc = &(pcfg->desc);
 +
-+  if (libusb20_dev_get_info(pdev, &di))
-+{
-+  free(pcfg);
++  if ((pcfg == NULL) || libusb20_dev_get_info(pdev, &di))
++	{
++	  if (pcfg != NULL) free(pcfg);
 +	  continue;
 +	}
 +
@@ -196,7 +196,7 @@
 +  libhal_device_set_property_string(hfp_ctx, hfp_udi,
 +"info.vendor", di.udi_vendor, &hfp_error);
 +
-+  free(pcfg);
++  libusb20_dev_close(pdev); free(pcfg);
 +}
 +end:
 +  if (pbe)
___
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"

Current unassigned ports problem reports

2009-05-18 Thread FreeBSD bugmaster
(Note: an HTML version of this report is available at
http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports .)

The following is a listing of current problems submitted by FreeBSD users.
These represent problem reports covering all versions including
experimental development code and obsolete releases.


S Tracker  Resp.  Description

o ports/134642[UPDATE] mail/extmail update to 1.1.0
f ports/134639devel/boost can't be made with parameteres  -DWITH_PYT
o ports/134636new port: www/p5-WWW-Shorten-isgd, Perl interface to U
o ports/134634[MAINTAINER] Update port: systools/samesame non-code t
o ports/134617New port: devel/lmdbg Lightweight malloc debugger
o ports/134595Take games/odamex port and update to 0.4.3
f ports/134581[UPDATE] www/tinymce3 : update to 3.2.3.1
f ports/134580[UPDATE] www/smarty : update to 2.6.23
o ports/134555update devel/php5-ice to 3.3.1
o ports/134552[patch] mail/p5-Mail-SpamAssassin loses mail when kill
o ports/134545mail/spamd: spamlogd does not use proper white expirat
s ports/134485net-mgmt/trafd 3.0.2.1 doesn't collect traffic
o ports/134474deskutils/wmpinboard segfaults on startup
o ports/134443[NEW PORT] multimedia/2ManDVD: Create your own video d
o ports/134413www/opera blocks other programs from opening windows
o ports/134347mail/spamd: spamlogd's whitelist expiration period is 
o ports/134300databases/postgresql-plruby: PL/ruby corrupts data sin
f ports/134271mail/popd POP3 server dies handling messages with very
f ports/134270update port: print/hplip update to: 3.9.4
f ports/134264audio/cmus - segmentation fault with ogg files
o ports/134230graphics/digikam-kde4 does not build from ports
o ports/134124NEW port: cad/verilog-perl
o ports/134112[MAINTAINER] net/asterisk16-addons: update to 1.6.1.0
o ports/134101New port: multimedia/playd playd is a simple to use mp
f ports/134055bulding port: misc/libhome on FreeBSD 7.1 amd64
o ports/134015[patch] graphics/mapnik should install library with co
f ports/133944[PATCH] print/latex-prettyref: [SUMMARIZE CHANGES]
o ports/133928New Port: multimedia/gdialog, A Project X addon to rea
o ports/133901[PATCH] net-p2p/amule2: Add WITH_UPNP knob to "Enable 
o ports/133822New port for cad/linux-eagle5 (Eagle 5.5.0)
o ports/133655New port: sysutils/megacli MegaCLI SAS RAID Management
o ports/133563security/cfs rc script needs "mntudp" option on 8-CURR
o ports/133533[PATCH] Add a static user/group for audio/musicpd port
f ports/133451www/plone3 build fails. Plone3 needs python-2.4 but li
o ports/133441graphics/sane-backends: epson2 sane-backend wants to r
o ports/133435deskutils/egroupware dependency unresolved
o ports/133421[NEW PORT] java/eclipse-xsd: EMF-XSD Runtime
f ports/133358[PATCH] net/bounce: add new -q option
f ports/133344net/nss_ldap fails to compile if world was installed w
o ports/133303lang/visualworks cannot load Jun because of lacking TG
f ports/133261[patch] www/free-sa: respect system cflags and expose 
o ports/133254[bsd.fpc.mk] don't display bogus message for fpc-using
o ports/133242[PATCH] science/gromacs: fix sparc64, fix WITH_MPICH
o ports/133241net/balance parameter -b does not accept numeric ip ad
o ports/133068New port: audio/linux-genpuid
o ports/133047[maintainer-update] Update graphics/linux-ac3d to 6.4.
f ports/133031ports/net/igmpproxy "must be at least 2 Vif's where on
o ports/132792[new port] re-activating print/ifhp
o ports/132786New port: sysutils/sispmctl Utility for controlling a 
o ports/132556New port: ftp/vsftpd-ext   Extended build of ftp/vsftp
o ports/132391multimedia/mplayer does not work with pulseaudio
o ports/131580port databases/frontbase upgraded to version 4.2.9
o ports/131526lang/cmucl: CMUCL for FreeBSD 7
o ports/131442 ports  new port: audio/xmms-timidity
o ports/131357New port: editors/japi -- a simple gtk2 based text edi
s ports/131218www/privoxy+ipv6: /etc/rc: WARNING: run_rc_command: ca
o ports/131168new port: devel/lpc21isp
o ports/131041[new port] x11-themes/gtk-nodoka-engine: GTK nodoka en
p ports/130779[PATCH] emulators/dosbox enable directserial passthrou
o ports/130719www/nspluginwrapper installs plugins in the old direct
o ports/130715New Port:devel/binutils-2.19
o ports/1306

Re: devel/boost: what's proper shared library version?

2009-05-18 Thread Alexander Churanov
2009/5/16 Jeremy Messenger :
> It's highly unlike they will break the ABI in the minor release.

I'm agree, it's unlikely. But it's possible and there is not warranty.

> We haven't bump boost when minor version was released and no issue.
> What number or blah, I don't care as long as you do not bump it for
> no reason when the ABI isn't broke.

It's very hard and time consuming to detect whether a particular library
from boost breaks the ABI. I have no automated test suite to verify that and
there are no resources for creating one.

I am for changing version at every release, since this is what's
suggested by boost. However, as a maintainer I'll accept any decision
of FreeBSD ports team.

Thus, can I be officially instructed what to do?
I see following options:

1) Change shared objects version on every release.
2) Change shared objects version on every major release and also if an
issue was discovered.
3) Decide myself.

Sincerely,
Alexander Churanov,
maintainer of devel/boost
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Andrey Fesenko
On Sun, May 17, 2009 at 10:09 PM, Martin Wilke  wrote:

>
> We rolled a new tarball with the patch from Juergen Lock [1]
> with a posible fix for AMD64 users, tested on 3 machines
> which now works without problems. Many Thanks to him for
> his nice work!
>
> http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz
>
> Martin
>

FreeBSD 8.0-CURRENT #0: Sun May 17 07:56:14 MSD 2009 amd64
new port 
virtualbox_2.tgz
make - OK
install - OK
load module - OK
run -OK
run VM - crush :( only 1 time. more have not yet tried.
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Doug Poland

On Sun, May 17, 2009 19:25, Greg Byshenk wrote:
> On Sun, May 17, 2009 at 08:09:20PM +0200, Martin Wilke wrote:
>>
>> We rolled a new tarball with the patch from Juergen Lock [1]
>> with a posible fix for AMD64 users, tested on 3 machines
>> which now works without problems. Many Thanks to him for
>> his nice work!
>>
>> http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz
>
Working for me with a fresh cvsup of 7.2-STABLE (17 May 09). 
Installing a 7.2-RELEASE amd64 guest as I write this.

-- 
Regards,
Doug

___
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"


CURRENT && evince, firefox, ... dont see CUPS

2009-05-18 Thread Matthias Apitz

Hello,

I've installed a relatively new CURRENT on a laptop and applications
from /usr/ports; I can't make evince, firefox3, Evolution, ... using the 
installed CUPS
system (KDE works fine with CUPS). Sure I'm missing something because in my
older RELENG_7 system the evince has linked in a lot of Gnome support:

ldd /usr/local/bin/evince | fgrep gnome
libgnomeui-2.so.0 => /usr/local/lib/libgnomeui-2.so.0 (0x28105000)
libgnome-keyring.so.0 => /usr/local/lib/libgnome-keyring.so.0 
(0x2818f000)
libgnome-2.so.0 => /usr/local/lib/libgnome-2.so.0 (0x2821b000)
libgnomevfs-2.so.0 => /usr/local/lib/libgnomevfs-2.so.0 (0x2822f000)
libgnomeprintui-2-2.so.0 => /usr/local/lib/libgnomeprintui-2-2.so.0 
(0x287df000)
libgnomeprint-2-2.so.0 => /usr/local/lib/libgnomeprint-2-2.so.0 
(0x2881e000)
libgnomecanvas-2.so.0 => /usr/local/lib/libgnomecanvas-2.so.0 
(0x28886000)

while on the CURRENT is has only:

ldd /usr/local/bin/evince | fgrep gnome
libgnome-keyring.so.0 => /usr/local/lib/libgnome-keyring.so.0 
(0x284d1000)

but I don't see how to activate this; the above mentioned libgnomeprint*
libs are also installed in the CURRENT? What I'm missing?

Thx

matthias
-- 
Matthias Apitz
t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211
e  - w http://www.unixarea.de/
People who hate Microsoft Windows use Linux but people who love UNIX use 
FreeBSD.
___
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: databases/clip

2009-05-18 Thread Philipp Ost

Dmitry N. Kolesnikov wrote:
Hi, 
I need the databases/clip port updated to current (v. 1.2.0), can you please 
do it?


FYI, this port currently has no maintainer:
$ cd /usr/ports/databases/clip/
$ make maintainer
po...@freebsd.org
$

Regards,
Philipp
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Tim Bishop
On Mon, May 18, 2009 at 08:38:18AM -0500, Doug Poland wrote:
> On Sun, May 17, 2009 19:25, Greg Byshenk wrote:
> > On Sun, May 17, 2009 at 08:09:20PM +0200, Martin Wilke wrote:
> >>
> >> We rolled a new tarball with the patch from Juergen Lock [1]
> >> with a posible fix for AMD64 users, tested on 3 machines
> >> which now works without problems. Many Thanks to him for
> >> his nice work!
> >>
> >> http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz
> 
> Working for me with a fresh cvsup of 7.2-STABLE (17 May 09). 
> Installing a 7.2-RELEASE amd64 guest as I write this.

Works for me, but I've not been able to get a 64 bit guest to work. I
get the following error when booting the installer:

CPU doesn't support long mode

I think I've got all the right options set. Maybe my CPU doesn't support
the necessary VM stuff to let a 64 bit guest work?

I'm also still seeing the following on loading vboxdrv:

kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
kldload: unexpected relocation type 10
vboxdrv: fAsync=0 offMin=0x41f offMax=0x53b

Are others still seeing that on amd64?

Tim.

-- 
Tim Bishop
http://www.bishnet.net/tim/
PGP Key: 0x5AE7D984
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Tim Bishop
On Mon, May 18, 2009 at 04:56:13PM +0100, Tim Bishop wrote:
> On Mon, May 18, 2009 at 08:38:18AM -0500, Doug Poland wrote:
> > On Sun, May 17, 2009 19:25, Greg Byshenk wrote:
> > > On Sun, May 17, 2009 at 08:09:20PM +0200, Martin Wilke wrote:
> > >>
> > >> We rolled a new tarball with the patch from Juergen Lock [1]
> > >> with a posible fix for AMD64 users, tested on 3 machines
> > >> which now works without problems. Many Thanks to him for
> > >> his nice work!
> > >>
> > >> http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz
> > 
> > Working for me with a fresh cvsup of 7.2-STABLE (17 May 09). 
> > Installing a 7.2-RELEASE amd64 guest as I write this.
> 
> Works for me, but I've not been able to get a 64 bit guest to work. I
> get the following error when booting the installer:
> 
>   CPU doesn't support long mode
> 
> I think I've got all the right options set. Maybe my CPU doesn't support
> the necessary VM stuff to let a 64 bit guest work?

I'm getting good at answering my own questions :D Yes, it's my CPU.
Found a different machine and confirmed it has the VMX extension, and
all is fine.

> I'm also still seeing the following on loading vboxdrv:
> 
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> vboxdrv: fAsync=0 offMin=0x41f offMax=0x53b
> 
> Are others still seeing that on amd64?

Not that I thought it'd make any difference, but I can confirm those
still happen even with the VMX extension.

Tim.

-- 
Tim Bishop
http://www.bishnet.net/tim/
PGP Key: 0x5AE7D984
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Benoit Calvez
On Mon, May 18, 2009 at 5:56 PM, Tim Bishop  wrote:

> On Mon, May 18, 2009 at 08:38:18AM -0500, Doug Poland wrote:
> > On Sun, May 17, 2009 19:25, Greg Byshenk wrote:
> > > On Sun, May 17, 2009 at 08:09:20PM +0200, Martin Wilke wrote:
> > >>
> > >> We rolled a new tarball with the patch from Juergen Lock [1]
> > >> with a posible fix for AMD64 users, tested on 3 machines
> > >> which now works without problems. Many Thanks to him for
> > >> his nice work!
> > >>
> > >> http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz
> >
> > Working for me with a fresh cvsup of 7.2-STABLE (17 May 09).
> > Installing a 7.2-RELEASE amd64 guest as I write this.
>
> Works for me, but I've not been able to get a 64 bit guest to work. I
> get the following error when booting the installer:
>
>CPU doesn't support long mode
>
> I think I've got all the right options set. Maybe my CPU doesn't support
> the necessary VM stuff to let a 64 bit guest work?
>
> I'm also still seeing the following on loading vboxdrv:
>
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> vboxdrv: fAsync=0 offMin=0x41f offMax=0x53b
>
> Are others still seeing that on amd64?
>

got the same in dmesg:

kldload: unexpected relocation type 10
vboxdrv: fAsync=1 offMin=0xff94c offMax=0xff94c
supdrvGipCreate: omni timer not supported, falling back to synchronous mode




>
> Tim.
>
> --
> Tim Bishop
> http://www.bishnet.net/tim/
> PGP Key: 0x5AE7D984
> ___
> freebsd-curr...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-current
> To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"
>



-- 
Benoit Calvez.
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Andrey Fesenko
On Mon, May 18, 2009 at 7:56 PM, Tim Bishop  wrote:

> On Mon, May 18, 2009 at 08:38:18AM -0500, Doug Poland wrote:
> > On Sun, May 17, 2009 19:25, Greg Byshenk wrote:
> > > On Sun, May 17, 2009 at 08:09:20PM +0200, Martin Wilke wrote:
> > >>
> > >> We rolled a new tarball with the patch from Juergen Lock [1]
> > >> with a posible fix for AMD64 users, tested on 3 machines
> > >> which now works without problems. Many Thanks to him for
> > >> his nice work!
> > >>
> > >> http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz
> >
> > Working for me with a fresh cvsup of 7.2-STABLE (17 May 09).
> > Installing a 7.2-RELEASE amd64 guest as I write this.
>
> Works for me, but I've not been able to get a 64 bit guest to work. I
> get the following error when booting the installer:
>
>CPU doesn't support long mode
>
> I think I've got all the right options set. Maybe my CPU doesn't support
> the necessary VM stuff to let a 64 bit guest work?
>
> I'm also still seeing the following on loading vboxdrv:
>
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> kldload: unexpected relocation type 10
> vboxdrv: fAsync=0 offMin=0x41f offMax=0x53b
>
> Are others still seeing that on amd64?
>
>
FreeBSD 8.0-CURRENT #0: Sun May 17 07:56:14 MSD 2009 amd64

got the same in/var/log/messages
May 18 22:00:02 my_book newsyslog[25948]: logfile turned over due to
size>100K
May 18 22:07:28 my_book kernel: kldload: unexpected relocation type 10
May 18 22:07:28 my_book last message repeated 11 times
May 18 22:07:28 my_book kernel: vboxdrv: fAsync=0 offMin=0x499 offMax=0x8744
___
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: More libgmp leftovers due to indirect dependencies

2009-05-18 Thread Pietro Cerutti

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Jan Henrik Sylvester wrote:
| math/libqalculate and print/lilypond both link libgmp.so.X, but have not
| been bumped with the libgmp.so.7->libgmp.so.8 update as they do not list
| the dependency.
|
| math/libqalculate pulls in libgmp via libcln and print/lilypond via
| libguile, thus the default package will always depend on libgmp.
|
| Both should have their PORTREVISION bumped and
| gmp.8:${PORTSDIR}/math/libgmp4 added to LIB_DEPENDS not to be missed
| next time.

print/lilypond fixed, thanks!

|
| Cheers,
| Jan Henrik
|
- --
Pietro Cerutti
g...@freebsd.org

PGP Public Key:
http://gahr.ch/pgp

+-+
| How do  you get |
|that backwards b?|
+-+

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.11 (FreeBSD)

iEYEAREKAAYFAkoRpe0ACgkQwMJqmJVx9451UQCdGcS06fjU6HpV3YBZSAzhqBpr
AucAniymFT5gbwmJcogLyqTYXe2o8jvp
=eQEX
-END PGP SIGNATURE-
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Marius Nünnerich
On Sun, May 17, 2009 at 20:09, Martin Wilke  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
>
> We rolled a new tarball with the patch from Juergen Lock [1]
> with a posible fix for AMD64 users, tested on 3 machines
> which now works without problems. Many Thanks to him for
> his nice work!
>
> http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz
>
> Martin

I'm impressed, everything I tried worked ootb. Thank you all!

(FreeBSD/i386 7.2-STABLE)
___
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: [Call For Testing] VirtualBox for FreeBSD! take2

2009-05-18 Thread Steve Polyack

Marius Nünnerich wrote:

On Sun, May 17, 2009 at 20:09, Martin Wilke  wrote:
  

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


We rolled a new tarball with the patch from Juergen Lock [1]
with a posible fix for AMD64 users, tested on 3 machines
which now works without problems. Many Thanks to him for
his nice work!

http://people.freebsd.org/~miwi/vbox/virtualbox_2.tgz

Martin



I'm impressed, everything I tried worked ootb. Thank you all!

(FreeBSD/i386 7.2-STABLE)
  
Everything's working great for me as well (i386 7.2-RELEASE here).  Are 
there plans to support the bridged interface network adapters?


Also, I was surprised at how good the performance was on my home machine 
with the VT extensions.  Great work!


___
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"


phpMyAdmin - usefulness of mysql dependency

2009-05-18 Thread Miroslav Lachman

Hi,

as you are listed as maintainer of this port, I have a question...

Does it really have any sense to have mysql-client as dependency in case 
of WITHOUT_PHP_DEPENDS=yes defined?


Then it results in this dependency:

~/# pkg_info -rR phpMyAdmin-3.1.5
Information for phpMyAdmin-3.1.5:

Depends on:
Dependency: mysql-client-5.0.81

And it seems useless to me. I expect to use mysql-client as dependency 
only in case where php5-mysql or php5-mysqli is listed as dependency. 
Then these PHP extensions will require mysql-client as their own 
dependency. Or am I wrong?


(what I need is some knob to install PHP webapplications, like 
phpMyAdmin in this case, without any recorded dependencies, as I would 
like to maintain servervices applications separately)


Miroslav Lachman
___
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: piwik-0.2.37 piwik-0.2.37.zip: size mismatch: expected 2474475, actual 2474547

2009-05-18 Thread Sahil Tandon
On Mon, 18 May 2009, Fluid wrote:

> make install clean
> 
> => piwik-0.2.37.zip doesn't seem to exist in /usr/ports/distfiles/.
> 
> => Attempting to fetch from http://builds.piwik.org/.
> 
> fetch: http://builds.piwik.org/piwik-0.2.37.zip: size mismatch: expected
> 2474475, actual 2474547

ports/134637

-- 
Sahil Tandon 
___
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"