Re: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-13 Thread Thomas Steen Rasmussen
On 12.10.2011 01:31, Warren Block wrote:
 On Tue, 11 Oct 2011, Eitan Adler wrote:

 On Tue, Oct 11, 2011 at 3:39 PM, Hans Petter Selasky
 hsela...@c2i.net wrote:
 In my talk at EuroBSDcon I said that webcamd might be renamed in the
 future.
 Does anyone have any good suggestions?

 We even borrow camera and more drivers - webcamd

 Linux Usb Compatibility Kit.

^^^ - this!
luck / luckd is a very nice name, IMO.

/Thomas

___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-12 Thread Torfinn Ingolfsen
On Wed, Oct 12, 2011 at 5:37 AM, Jason Hellenthal jh...@dataix.net wrote:


 On Tue, Oct 11, 2011 at 09:57:07PM +0200, Juergen Lock wrote:
 On Tue, Oct 11, 2011 at 09:39:52PM +0200, Hans Petter Selasky wrote:
  On Tuesday 11 October 2011 21:31:02 Juergen Lock wrote:
   On Tue, Oct 11, 2011 at 08:35:49PM +0200, Michal Varga wrote:
On Tue, 2011-10-11 at 20:21 +0200, Juergen Lock wrote:
 No.  webcamd has become kind of a misnomer, it's in fact just a
 `wrapper' for several kinds of Linux usb kernel drivers to run them 
 in
 FreeBSD userland.  (We have now at least webcams, dvb tuners, IR
 transceivers, and usb tablets. :)
   
Oh god, thank you for mentioning this. I've been personally keeping
webcamd out of my installations as we don't need no stinkin webcams
here, but this is something completely different based on what you say
(especially the Wacom support).
   
Was there any push to rename webcamd to something more meaningful yet?
  
   I'm not aware of anything like that...
 
  In my talk at EuroBSDcon I said that webcamd might be renamed in the 
  future.
  Does anyone have any good suggestions?

 Hmm thats tricky...  usbd-linux?  Can't think of something really good...

       Juergen

 usbsd ?

Perhaps usbmd? (usb media daemon)
-- 
Regards,
Torfinn Ingolfsen
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Juergen Lock
On Tue, Oct 11, 2011 at 06:23:41PM +0200, Juergen Lock wrote:
 Hi!
 
  My dad likes to paint a bit so I got him a Wacom tablet as a present
 (Bamboo Pen  Touch), and I thought I could help getting it working
 on FreeBSD while I was at it...  [...]

I guess I should have said getting it working on 8.x and later, I
suppose the input-wacom port currently in ports still can be made
to work with the old usb stack in 7.x.

 Sorry... :)
Juergen
___
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


Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Juergen Lock
Hi!

 My dad likes to paint a bit so I got him a Wacom tablet as a present
(Bamboo Pen  Touch), and I thought I could help getting it working
on FreeBSD while I was at it...  Asked hps, who kindly prepared a
webcamd update that adds support:

svn --username anonsvn --password anonsvn \
checkout svn://svn.turbocat.net/i4b/trunk/ports
cd ports/multimedia/webcamd  make all install clean

which I now tested with a preliminary x11-drivers/input-wacom xorg
driver update that I prepared:

http://people.freebsd.org/~nox/tmp/inputwacom.patch

I had to rebuild xorg-server without hal support because apparently
hal and thus the xserver picked up webcamd's /dev/input node for
the wacom which made my mouse misbehave (proper hal configs to
ignore webcamd's device node welcome, :) and I added this to
xorg.conf:

snip---
Section ServerLayout
...
InputDevice stylus
InputDevice eraser
...
EndSection
...

Section InputDevice
Driver  wacom
Identifier  stylus
Option  Device/dev/input/event0
Option  Type  stylus
Option  USB   on
EndSection

Section InputDevice
Driver  wacom
Identifier  eraser
Option  Device/dev/input/event0
Option  Type  eraser
Option  USB   on
EndSection
snip---

 ..and that appears to have got graphics/mypaint working (which
btw needs x11-toolkits/py-gtk2 rebuilt with the NUMPY knob on),
with both the stylus and eraser of my (dad's) tablet.  (mypaint
ignores the pad device so I removed it from xorg.conf again, see
the wacom(4x) manpage and the input-wacom wiki.)

 Happy testing, and thanks to Hans!
Juergen
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Jason Hellenthal


On Tue, Oct 11, 2011 at 06:47:16PM +0200, Juergen Lock wrote:
 On Tue, Oct 11, 2011 at 06:23:41PM +0200, Juergen Lock wrote:
  Hi!
  
   My dad likes to paint a bit so I got him a Wacom tablet as a present
  (Bamboo Pen  Touch), and I thought I could help getting it working
  on FreeBSD while I was at it...  [...]
 
 I guess I should have said getting it working on 8.x and later, I
 suppose the input-wacom port currently in ports still can be made
 to work with the old usb stack in 7.x.
 

I might be missing something but does this tablet have a webcam built
into it ? this is me not understanding the use of webcamd.
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Juergen Lock
On Tue, Oct 11, 2011 at 01:54:14PM -0400, Jason Hellenthal wrote:
 
 
 On Tue, Oct 11, 2011 at 06:47:16PM +0200, Juergen Lock wrote:
  On Tue, Oct 11, 2011 at 06:23:41PM +0200, Juergen Lock wrote:
   Hi!
   
My dad likes to paint a bit so I got him a Wacom tablet as a present
   (Bamboo Pen  Touch), and I thought I could help getting it working
   on FreeBSD while I was at it...  [...]
  
  I guess I should have said getting it working on 8.x and later, I
  suppose the input-wacom port currently in ports still can be made
  to work with the old usb stack in 7.x.
  
 
 I might be missing something but does this tablet have a webcam built
 into it ? this is me not understanding the use of webcamd.

No.  webcamd has become kind of a misnomer, it's in fact just a `wrapper'
for several kinds of Linux usb kernel drivers to run them in FreeBSD
userland.  (We have now at least webcams, dvb tuners, IR transceivers,
and usb tablets. :)

 HTH,
Juergen
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Michal Varga
On Tue, 2011-10-11 at 20:21 +0200, Juergen Lock wrote:

 No.  webcamd has become kind of a misnomer, it's in fact just a `wrapper'
 for several kinds of Linux usb kernel drivers to run them in FreeBSD
 userland.  (We have now at least webcams, dvb tuners, IR transceivers,
 and usb tablets. :)
 

Oh god, thank you for mentioning this. I've been personally keeping
webcamd out of my installations as we don't need no stinkin webcams
here, but this is something completely different based on what you say
(especially the Wacom support).

Was there any push to rename webcamd to something more meaningful yet?

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


Re: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Juergen Lock
On Tue, Oct 11, 2011 at 08:35:49PM +0200, Michal Varga wrote:
 On Tue, 2011-10-11 at 20:21 +0200, Juergen Lock wrote:
 
  No.  webcamd has become kind of a misnomer, it's in fact just a `wrapper'
  for several kinds of Linux usb kernel drivers to run them in FreeBSD
  userland.  (We have now at least webcams, dvb tuners, IR transceivers,
  and usb tablets. :)
  
 
 Oh god, thank you for mentioning this. I've been personally keeping
 webcamd out of my installations as we don't need no stinkin webcams
 here, but this is something completely different based on what you say
 (especially the Wacom support).
 
 Was there any push to rename webcamd to something more meaningful yet?

I'm not aware of anything like that...

Juergen
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Hans Petter Selasky
On Tuesday 11 October 2011 21:31:02 Juergen Lock wrote:
 On Tue, Oct 11, 2011 at 08:35:49PM +0200, Michal Varga wrote:
  On Tue, 2011-10-11 at 20:21 +0200, Juergen Lock wrote:
   No.  webcamd has become kind of a misnomer, it's in fact just a
   `wrapper' for several kinds of Linux usb kernel drivers to run them in
   FreeBSD userland.  (We have now at least webcams, dvb tuners, IR
   transceivers, and usb tablets. :)
  
  Oh god, thank you for mentioning this. I've been personally keeping
  webcamd out of my installations as we don't need no stinkin webcams
  here, but this is something completely different based on what you say
  (especially the Wacom support).
  
  Was there any push to rename webcamd to something more meaningful yet?
 
 I'm not aware of anything like that...

In my talk at EuroBSDcon I said that webcamd might be renamed in the future. 
Does anyone have any good suggestions?

--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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Juergen Lock
On Tue, Oct 11, 2011 at 09:39:52PM +0200, Hans Petter Selasky wrote:
 On Tuesday 11 October 2011 21:31:02 Juergen Lock wrote:
  On Tue, Oct 11, 2011 at 08:35:49PM +0200, Michal Varga wrote:
   On Tue, 2011-10-11 at 20:21 +0200, Juergen Lock wrote:
No.  webcamd has become kind of a misnomer, it's in fact just a
`wrapper' for several kinds of Linux usb kernel drivers to run them in
FreeBSD userland.  (We have now at least webcams, dvb tuners, IR
transceivers, and usb tablets. :)
   
   Oh god, thank you for mentioning this. I've been personally keeping
   webcamd out of my installations as we don't need no stinkin webcams
   here, but this is something completely different based on what you say
   (especially the Wacom support).
   
   Was there any push to rename webcamd to something more meaningful yet?
  
  I'm not aware of anything like that...
 
 In my talk at EuroBSDcon I said that webcamd might be renamed in the future. 
 Does anyone have any good suggestions?

Hmm thats tricky...  usbd-linux?  Can't think of something really good...

Juergen
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Michal Varga
On Tue, 2011-10-11 at 21:39 +0200, Hans Petter Selasky wrote:
 On Tuesday 11 October 2011 21:31:02 Juergen Lock wrote:
  On Tue, Oct 11, 2011 at 08:35:49PM +0200, Michal Varga wrote:
   On Tue, 2011-10-11 at 20:21 +0200, Juergen Lock wrote:
No.  webcamd has become kind of a misnomer, it's in fact just a
`wrapper' for several kinds of Linux usb kernel drivers to run them in
FreeBSD userland.  (We have now at least webcams, dvb tuners, IR
transceivers, and usb tablets. :)
   
   Oh god, thank you for mentioning this. I've been personally keeping
   webcamd out of my installations as we don't need no stinkin webcams
   here, but this is something completely different based on what you say
   (especially the Wacom support).
   
   Was there any push to rename webcamd to something more meaningful yet?
  
  I'm not aware of anything like that...
 
 In my talk at EuroBSDcon I said that webcamd might be renamed in the future. 
 Does anyone have any good suggestions?
 
 --HPS

Well if you insist on the d ending, something along, say, usblinuxd?

Or possibly kmodlinux[d], if USB isn't going to be the absolute target
forever...

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


Re: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Thomas Steen Rasmussen
On 11.10.2011 22:08, Michal Varga wrote:
 On Tue, 2011-10-11 at 21:39 +0200, Hans Petter Selasky wrote:
 In my talk at EuroBSDcon I said that webcamd might be renamed in the future. 
 Does anyone have any good suggestions?


Linux
USB
Driver
Userspace
Daemon

ludud !

Oh wait - you said good suggestions - nevermind then :)

/Thomas

___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Eitan Adler
On Tue, Oct 11, 2011 at 3:39 PM, Hans Petter Selasky hsela...@c2i.net wrote:
 In my talk at EuroBSDcon I said that webcamd might be renamed in the future.
 Does anyone have any good suggestions?

We even borrow camera and more drivers - webcamd



-- 
Eitan Adler
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Warren Block

On Tue, 11 Oct 2011, Eitan Adler wrote:


On Tue, Oct 11, 2011 at 3:39 PM, Hans Petter Selasky hsela...@c2i.net wrote:

In my talk at EuroBSDcon I said that webcamd might be renamed in the future.
Does anyone have any good suggestions?


We even borrow camera and more drivers - webcamd


Linux Usb Compatibility Kit.

Linux Usb Driver Daemon.
___
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: Testing Wacom usb tablet with webcamd svn (and mypaint)

2011-10-11 Thread Jason Hellenthal


On Tue, Oct 11, 2011 at 09:57:07PM +0200, Juergen Lock wrote:
 On Tue, Oct 11, 2011 at 09:39:52PM +0200, Hans Petter Selasky wrote:
  On Tuesday 11 October 2011 21:31:02 Juergen Lock wrote:
   On Tue, Oct 11, 2011 at 08:35:49PM +0200, Michal Varga wrote:
On Tue, 2011-10-11 at 20:21 +0200, Juergen Lock wrote:
 No.  webcamd has become kind of a misnomer, it's in fact just a
 `wrapper' for several kinds of Linux usb kernel drivers to run them in
 FreeBSD userland.  (We have now at least webcams, dvb tuners, IR
 transceivers, and usb tablets. :)

Oh god, thank you for mentioning this. I've been personally keeping
webcamd out of my installations as we don't need no stinkin webcams
here, but this is something completely different based on what you say
(especially the Wacom support).

Was there any push to rename webcamd to something more meaningful yet?
   
   I'm not aware of anything like that...
  
  In my talk at EuroBSDcon I said that webcamd might be renamed in the 
  future. 
  Does anyone have any good suggestions?
 
 Hmm thats tricky...  usbd-linux?  Can't think of something really good...
 
   Juergen

usbsd ?
___
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