Could a brave committer apply the fixes for graphics/mypaint? (was: Re: mypaint)

2015-01-16 Thread Vitaly Magerya

In the original thread Jan Beich wrote:

I think the following are relevant patches from bugzilla.

Index: Mk/Uses/scons.mk
===
--- Mk/Uses/scons.mk(revision 376385)
+++ Mk/Uses/scons.mk(working copy)
@@ -17,6 +17,8 @@ IGNORE=   Incorrect 'USES+= scons:${scons_ARGS}' sco
  MAKEFILE= #
  MAKE_FLAGS=   #
  ALL_TARGET=   #
+CCFLAGS?=  ${CFLAGS}
+LINKFLAGS?=${LDFLAGS}
  LIBPATH?= ${LOCALBASE}/lib
  CPPPATH?= ${LOCALBASE}/include
  SCONS=${LOCALBASE}/bin/scons
Index: graphics/mypaint/Makefile
===
--- graphics/mypaint/Makefile   (revision 376385)
+++ graphics/mypaint/Makefile   (working copy)
@@ -22,7 +22,7 @@ BUILD_DEPENDS:=   ${RUN_DEPENDS} \

  USE_GNOME=glib20 pygtk2
  MAKE_ARGS=prefix=${PREFIX}
-USES=  gettext pkgconfig scons tar:bzip2 python
+USES=  compiler:gcc-c++11-lib gettext pkgconfig scons tar:bzip2 python
  INSTALLS_ICONS=   yes

  SUB_FILES=pkg-install

-


In short, graphics/mypaint is currently broken, and PRs 193434 [1] and 
193429 [2] should be committed to fix it. Both of them are one-line 
changes, and both have been open for 5 months now.


Can someone commit those PRs?

Or better yet, give their submitter, Jan Beich, the commit bit so he 
could do it himself? The guy submitted 300+ PRs, and he's not even 
mentioned in the Additional Contributors list...


[1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193434
[2] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193429
___
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: mypaint

2015-01-14 Thread Vitaly Magerya

On 2015-01-12 20:16, Jan Beich wrote:

I think the following are relevant patches from bugzilla.

Index: Mk/Uses/scons.mk
===
--- Mk/Uses/scons.mk(revision 376385)
+++ Mk/Uses/scons.mk(working copy)
@@ -17,6 +17,8 @@ IGNORE=   Incorrect 'USES+= scons:${scons_ARGS}' sco
  MAKEFILE= #
  MAKE_FLAGS=   #
  ALL_TARGET=   #
+CCFLAGS?=  ${CFLAGS}
+LINKFLAGS?=${LDFLAGS}
  LIBPATH?= ${LOCALBASE}/lib
  CPPPATH?= ${LOCALBASE}/include
  SCONS=${LOCALBASE}/bin/scons
Index: graphics/mypaint/Makefile
===
--- graphics/mypaint/Makefile   (revision 376385)
+++ graphics/mypaint/Makefile   (working copy)
@@ -22,7 +22,7 @@ BUILD_DEPENDS:=   ${RUN_DEPENDS} \

  USE_GNOME=glib20 pygtk2
  MAKE_ARGS=prefix=${PREFIX}
-USES=  gettext pkgconfig scons tar:bzip2 python
+USES=  compiler:gcc-c++11-lib gettext pkgconfig scons tar:bzip2 python
  INSTALLS_ICONS=   yes

  SUB_FILES=pkg-install

-


Yup, this fixes the problem. Thank you.
___
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: mypaint

2015-01-12 Thread lumiwa
On Sunday 11 January 2015 14:41:47 Ajtim wrote:
 On Sunday 11 January 2015 21:03:23 Vitaly Magerya wrote:
  On 01/11/15 16:30, Ajtim wrote:
   Hi!
   
   I like to install graphics/Mypaint on FreeBSD 10.1, p, amd64
   and I got:
   
   ---
   scons: Reading SConscript files ...
   building for 'python2.7' (use scons python_binary=xxx to change)
   using 'python2.7-config' (use scons python_config=xxx to change)
   rm -f libmypaint-tests.so libmypaint.so libmypaintlib.so
   python2.7 generate.py
   Writing mypaint-brush-settings-gen.h
   Writing brushsettings-gen.h
   You need to have numpy installed.
   
   ImportError: /usr/local/lib/libalapack.so.2: Undefined symbol
  
   cblas_zswap:
  Do you have math/py-numpy with ATLAS option on? If so, try toggling that
  option, reinstalling numpy and installing mypaint again. I don't know if
  this is still the case, but there was some interaction between that
  option and mypaint the last time I tried it.
 
 I didn't have. I did turn on and mypaint compile :) and it works.
 Thank you.

It works but application doesn't start:

We are not correctly installed or compiled!
script: /usr/local/bin/mypaint
deduced prefix: /usr/local
lib_shared: /usr/local/share/mypaint/
lib_compiled: /usr/local/lib/mypaint/

Traceback (most recent call last):
  File /usr/local/bin/mypaint, line 170, in module
datapath, extradata, confpath, localepath, localepath_brushlib = 
get_paths()
  File /usr/local/bin/mypaint, line 111, in get_paths
from lib import mypaintlib
  File /usr/local/share/mypaint/lib/mypaintlib.py, line 25, in module
_mypaintlib = swig_import_helper()
  File /usr/local/share/mypaint/lib/mypaintlib.py, line 17, in 
swig_import_helper
import _mypaintlib
ImportError: /usr/local/lib/mypaint/_mypaintlib.so: Undefined symbol 
_ZN10BufferCompIL20BufferCompOutputType1ELj16384E12HueBlendModeE9blendfuncE

Thank you.

-- 
ajtiM

http://www.redbubble.com/people/lumiwa
___
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: mypaint

2015-01-12 Thread lumiwa
On Monday 12 January 2015 16:01:28 Vitaly Magerya wrote:
 On 2015-01-12 15:42, lum...@gmail.com wrote:
  It works but application doesn't start:
  
  We are not correctly installed or compiled!
  script: /usr/local/bin/mypaint
  deduced prefix: /usr/local
  lib_shared: /usr/local/share/mypaint/
  lib_compiled: /usr/local/lib/mypaint/
  
  Traceback (most recent call last):
 File /usr/local/bin/mypaint, line 170, in module
 
   datapath, extradata, confpath, localepath, localepath_brushlib =
  
  get_paths()
  
 File /usr/local/bin/mypaint, line 111, in get_paths
 
   from lib import mypaintlib
 
 File /usr/local/share/mypaint/lib/mypaintlib.py, line 25, in module
 
   _mypaintlib = swig_import_helper()
 
 File /usr/local/share/mypaint/lib/mypaintlib.py, line 17, in
  
  swig_import_helper
  
   import _mypaintlib
  
  ImportError: /usr/local/lib/mypaint/_mypaintlib.so: Undefined symbol
  _ZN10BufferCompIL20BufferCompOutputType1ELj16384E12HueBlendModeE9blendfun
  cE
 Yeah, I'm actually getting the same error myself now. There's even a bug
 report about this problem (PR 193429; bugzilla is down at the moment
 though).
 
 I'm currently updating my ports to see if the problem remains with the
 latest everything... (this will take a day or two on my hardware).

Thank you very much.

-- 
ajtiM

http://www.redbubble.com/people/lumiwa
___
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: mypaint

2015-01-12 Thread Vitaly Magerya

On 2015-01-12 15:42, lum...@gmail.com wrote:

It works but application doesn't start:

We are not correctly installed or compiled!
script: /usr/local/bin/mypaint
deduced prefix: /usr/local
lib_shared: /usr/local/share/mypaint/
lib_compiled: /usr/local/lib/mypaint/

Traceback (most recent call last):
   File /usr/local/bin/mypaint, line 170, in module
 datapath, extradata, confpath, localepath, localepath_brushlib =
get_paths()
   File /usr/local/bin/mypaint, line 111, in get_paths
 from lib import mypaintlib
   File /usr/local/share/mypaint/lib/mypaintlib.py, line 25, in module
 _mypaintlib = swig_import_helper()
   File /usr/local/share/mypaint/lib/mypaintlib.py, line 17, in
swig_import_helper
 import _mypaintlib
ImportError: /usr/local/lib/mypaint/_mypaintlib.so: Undefined symbol
_ZN10BufferCompIL20BufferCompOutputType1ELj16384E12HueBlendModeE9blendfuncE


Yeah, I'm actually getting the same error myself now. There's even a bug 
report about this problem (PR 193429; bugzilla is down at the moment 
though).


I'm currently updating my ports to see if the problem remains with the 
latest everything... (this will take a day or two on my hardware).

___
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: mypaint

2015-01-12 Thread Jan Beich
Vitaly Magerya vmage...@gmail.com writes:

 It works but application doesn't start:

 We are not correctly installed or compiled!
 script: /usr/local/bin/mypaint
 deduced prefix: /usr/local
 lib_shared: /usr/local/share/mypaint/
 lib_compiled: /usr/local/lib/mypaint/

 Traceback (most recent call last):
File /usr/local/bin/mypaint, line 170, in module
  datapath, extradata, confpath, localepath, localepath_brushlib =
 get_paths()
File /usr/local/bin/mypaint, line 111, in get_paths
  from lib import mypaintlib
File /usr/local/share/mypaint/lib/mypaintlib.py, line 25, in module
  _mypaintlib = swig_import_helper()
File /usr/local/share/mypaint/lib/mypaintlib.py, line 17, in
 swig_import_helper
  import _mypaintlib
 ImportError: /usr/local/lib/mypaint/_mypaintlib.so: Undefined symbol
 _ZN10BufferCompIL20BufferCompOutputType1ELj16384E12HueBlendModeE9blendfuncE

 Yeah, I'm actually getting the same error myself now. There's even a
 bug report about this problem (PR 193429; bugzilla is down at the
 moment though).

Or maybe https://gna.org/bugs/index.php?21981


 I'm currently updating my ports to see if the problem remains with the
 latest everything... (this will take a day or two on my hardware).

I think the following are relevant patches from bugzilla.

Index: Mk/Uses/scons.mk
===
--- Mk/Uses/scons.mk(revision 376385)
+++ Mk/Uses/scons.mk(working copy)
@@ -17,6 +17,8 @@ IGNORE=   Incorrect 'USES+= scons:${scons_ARGS}' sco
 MAKEFILE=  #
 MAKE_FLAGS=#
 ALL_TARGET=#
+CCFLAGS?=  ${CFLAGS}
+LINKFLAGS?=${LDFLAGS}
 LIBPATH?=  ${LOCALBASE}/lib
 CPPPATH?=  ${LOCALBASE}/include
 SCONS= ${LOCALBASE}/bin/scons
Index: graphics/mypaint/Makefile
===
--- graphics/mypaint/Makefile   (revision 376385)
+++ graphics/mypaint/Makefile   (working copy)
@@ -22,7 +22,7 @@ BUILD_DEPENDS:=   ${RUN_DEPENDS} \
 
 USE_GNOME= glib20 pygtk2
 MAKE_ARGS= prefix=${PREFIX}
-USES=  gettext pkgconfig scons tar:bzip2 python
+USES=  compiler:gcc-c++11-lib gettext pkgconfig scons tar:bzip2 python
 INSTALLS_ICONS=yes
 
 SUB_FILES= pkg-install

-

VFEmail.net - http://www.vfemail.net
ONLY AT VFEmail! - Use our Metadata Mitigator to keep your email out of the 
NSA's hands!
$24.95 ONETIME Lifetime accounts with Privacy Features!  
15GB disk! No bandwidth quotas!
Commercial and Bulk Mail Options!  
___
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


mypaint

2015-01-11 Thread Ajtim
Hi!

I like to install graphics/Mypaint on FreeBSD 10.1, p, amd64 and I got:

---
scons: Reading SConscript files ...
building for 'python2.7' (use scons python_binary=xxx to change)
using 'python2.7-config' (use scons python_config=xxx to change)
rm -f libmypaint-tests.so libmypaint.so libmypaintlib.so
python2.7 generate.py
Writing mypaint-brush-settings-gen.h
Writing brushsettings-gen.h
You need to have numpy installed.

ImportError: /usr/local/lib/libalapack.so.2: Undefined symbol cblas_zswap:
  File /usr/ports/graphics/mypaint/work/mypaint-1.1.0/SConstruct, line 172:
application = SConscript('./SConscript')
  File /usr/local/lib/scons-2.3.0/SCons/Script/SConscript.py, line 609:
return method(*args, **kw)
  File /usr/local/lib/scons-2.3.0/SCons/Script/SConscript.py, line 546:
return _SConscript(self.fs, *files, **subst_kw)
  File /usr/local/lib/scons-2.3.0/SCons/Script/SConscript.py, line 260:
exec _file_ in call_stack[-1].globals
  File /usr/ports/graphics/mypaint/work/mypaint-1.1.0/SConscript, line 9:
mypaintlib = SConscript('lib/SConscript')
  File /usr/local/lib/scons-2.3.0/SCons/Script/SConscript.py, line 609:
return method(*args, **kw)
  File /usr/local/lib/scons-2.3.0/SCons/Script/SConscript.py, line 546:
return _SConscript(self.fs, *files, **subst_kw)
  File /usr/local/lib/scons-2.3.0/SCons/Script/SConscript.py, line 260:
exec _file_ in call_stack[-1].globals
  File /usr/ports/graphics/mypaint/work/mypaint-1.1.0/lib/SConscript, line 
5:
import numpy
  File /usr/local/lib/python2.7/site-packages/numpy/__init__.py, line 170:
from . import add_newdocs
  File /usr/local/lib/python2.7/site-packages/numpy/add_newdocs.py, line 13:
from numpy.lib import add_newdoc
  File /usr/local/lib/python2.7/site-packages/numpy/lib/__init__.py, line 
18:
from .polynomial import *
  File /usr/local/lib/python2.7/site-packages/numpy/lib/polynomial.py, line 
19:
from numpy.linalg import eigvals, lstsq, inv
  File /usr/local/lib/python2.7/site-packages/numpy/linalg/__init__.py, line 
51:
from .linalg import *
  File /usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.py, line 
29:
from numpy.linalg import lapack_lite, _umath_linalg
=== Compilation failed unexpectedly.
Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to
the maintainer.
*** Error code 1

Stop.
make: stopped in /usr/ports/graphics/mypaint

=== make build failed for graphics/mypaint
=== Aborting update


=== You can restart from the point of failure with this command line:
   portmaster flags graphics/mypaint 

Thanks in advance.

-- 
ajtiM

http://www.redbubble.com/people/lumiwa
___
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: mypaint

2015-01-11 Thread Ajtim
On Sunday 11 January 2015 21:03:23 Vitaly Magerya wrote:
 On 01/11/15 16:30, Ajtim wrote:
  Hi!
  
  I like to install graphics/Mypaint on FreeBSD 10.1, p, amd64
  and I got:
  
  ---
  scons: Reading SConscript files ...
  building for 'python2.7' (use scons python_binary=xxx to change)
  using 'python2.7-config' (use scons python_config=xxx to change)
  rm -f libmypaint-tests.so libmypaint.so libmypaintlib.so
  python2.7 generate.py
  Writing mypaint-brush-settings-gen.h
  Writing brushsettings-gen.h
  You need to have numpy installed.
  
  ImportError: /usr/local/lib/libalapack.so.2: Undefined symbol
 
  cblas_zswap:
 Do you have math/py-numpy with ATLAS option on? If so, try toggling that
 option, reinstalling numpy and installing mypaint again. I don't know if
 this is still the case, but there was some interaction between that
 option and mypaint the last time I tried it.

I didn't have. I did turn on and mypaint compile :) and it works.
Thank you.

-- 
ajtiM

http://www.redbubble.com/people/lumiwa
___
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: mypaint

2015-01-11 Thread Vitaly Magerya
On 01/11/15 16:30, Ajtim wrote:
 Hi!

 I like to install graphics/Mypaint on FreeBSD 10.1, p, amd64
 and I got:

 ---
 scons: Reading SConscript files ...
 building for 'python2.7' (use scons python_binary=xxx to change)
 using 'python2.7-config' (use scons python_config=xxx to change)
 rm -f libmypaint-tests.so libmypaint.so libmypaintlib.so
 python2.7 generate.py
 Writing mypaint-brush-settings-gen.h
 Writing brushsettings-gen.h
 You need to have numpy installed.

 ImportError: /usr/local/lib/libalapack.so.2: Undefined symbol
 cblas_zswap:

Do you have math/py-numpy with ATLAS option on? If so, try toggling that
option, reinstalling numpy and installing mypaint again. I don't know if
this is still the case, but there was some interaction between that
option and mypaint the last time I tried it.
___
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-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