From owner-freebsd-multimedia@FreeBSD.ORG Sun Feb 17 11:50:01 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CBB752BC for ; Sun, 17 Feb 2013 11:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id BA9012E7 for ; Sun, 17 Feb 2013 11:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r1HBo074089064 for ; Sun, 17 Feb 2013 11:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r1HBo04v089062; Sun, 17 Feb 2013 11:50:00 GMT (envelope-from gnats) Date: Sun, 17 Feb 2013 11:50:00 GMT Message-Id: <201302171150.r1HBo04v089062@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: Rainer Hurling Subject: Re: ports/174338: [patch] multimedia/mkvtoolnix: update to 5.9.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Rainer Hurling List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2013 11:50:02 -0000 The following reply was made to PR ports/174338; it has been noted by GNATS. From: Rainer Hurling To: bug-followup@FreeBSD.org, rhurlin@gwdg.de Cc: Subject: Re: ports/174338: [patch] multimedia/mkvtoolnix: update to 5.9.0 Date: Sun, 17 Feb 2013 12:48:27 +0100 This is a multi-part message in MIME format. --------------010405020400090002090603 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Because of the newest version 6.0.0 of mkvtoolnix here is an update, which is more up to date. --------------010405020400090002090603 Content-Type: text/plain; charset=UTF-8; name="patch-multimedia_mkvtoolnix_5.9.0-6.0.0.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-multimedia_mkvtoolnix_5.9.0-6.0.0.txt" diff -Naur mkvtoolnix.orig/Makefile mkvtoolnix/Makefile --- mkvtoolnix.orig/Makefile 2013-01-31 17:21:45.000000000 +0100 +++ mkvtoolnix/Makefile 2013-02-17 12:13:54.000000000 +0100 @@ -2,11 +2,11 @@ # $FreeBSD: head/multimedia/mkvtoolnix/Makefile 311310 2013-01-31 13:38:42Z bapt $ PORTNAME= mkvtoolnix -PORTVERSION= 5.9.0 -PORTREVISION= 1 +PORTVERSION= 6.0.0 CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ \ CRITICAL +EXTRACT_SUFX= .tar.xz MAINTAINER= multimedia@FreeBSD.org COMMENT= Tools to extract from/get info about/create Matroska media streams @@ -14,17 +14,13 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= FLAC:${PORTSDIR}/audio/flac \ - expat:${PORTSDIR}/textproc/expat2 \ - lzo2:${PORTSDIR}/archivers/lzo2 \ +LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 \ vorbis:${PORTSDIR}/audio/libvorbis \ ogg:${PORTSDIR}/audio/libogg \ boost_regex:${PORTSDIR}/devel/boost-libs \ - curl:${PORTSDIR}/ftp/curl \ ebml:${PORTSDIR}/textproc/libebml \ matroska:${PORTSDIR}/multimedia/libmatroska -USE_BZIP2= yes USE_GCC= 4.6+ USE_GETTEXT= yes USE_ICONV= yes @@ -36,7 +32,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV+= ac_cv_path_PO4A=no ZLIB_CFLAGS=-I/usr/include ZLIB_LIBS=-lz -CONFIGURE_ARGS= --enable-lzo --enable-bz2 --disable-qt \ +CONFIGURE_ARGS= --enable-bz2 --disable-qt \ --with-boost=${LOCALBASE} \ --with-boost-filesystem=boost_filesystem \ --with-boost-system=boost_system \ @@ -46,8 +42,10 @@ MANLANG= "" ja zh_CN nl uk MAN1= mkvextract.1 mkvinfo.1 mkvmerge.1 mkvpropedit.1 -OPTIONS_DEFINE= WXGTK -OPTIONS_DEFAULT= WXGTK +OPTIONS_DEFINE= WXGTK LZO FLAC CURL +OPTIONS_DEFAULT= WXGTK LZO FLAC CURL +NO_OPTIONS_SORT= yes +LZO_DESC= lzo compression support .include @@ -66,10 +64,37 @@ MAN1+= mmg.1 PLIST_SUB+= GUI="" .else -CONFIGURE_ARGS+=--disable-gui +CONFIGURE_ARGS+= --disable-gui PLIST_SUB+= GUI="@comment " .endif +.if ${PORT_OPTIONS:MLZO} +LIB_DEPENDS+= lzo2:${PORTSDIR}/archivers/lzo2 +CONFIGURE_ARGS+= --enable-lzo +PLIST_SUB+= LZO2="" +.else +CONFIGURE_ARGS+= --disable-lzo +PLIST_SUB+= LZO2="@comment " +.endif + +.if ${PORT_OPTIONS:MFLAC} +LIB_DEPENDS+= FLAC:${PORTSDIR}/audio/flac +CONFIGURE_ARGS+= --with-flac +PLIST_SUB+= FLAC="" +.else +CONFIGURE_ARGS+= --without-flac +PLIST_SUB+= FLAC="@comment " +.endif + +.if ${PORT_OPTIONS:MCURL} +LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +PLIST_SUB+= CURL="" +.else +# --without-curl and --disable-curl don't work, but this one does: +CONFIGURE_ARGS+= --with-curl-config=/dev/null +PLIST_SUB+= CURL="@comment " +.endif + do-build: @(cd ${WRKSRC}/; unset PREFIX; ${RAKE_BIN}) diff -Naur mkvtoolnix.orig/distinfo mkvtoolnix/distinfo --- mkvtoolnix.orig/distinfo 2012-12-20 15:37:52.000000000 +0100 +++ mkvtoolnix/distinfo 2013-02-17 12:07:17.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (mkvtoolnix-5.9.0.tar.bz2) = d913f531331c3332d2fb334c872ea19bfea7293dfedc4bf33ae7162e4efcbde1 -SIZE (mkvtoolnix-5.9.0.tar.bz2) = 4493517 +SHA256 (mkvtoolnix-6.0.0.tar.xz) = 84ddefb079aeef2b3b2ac418e3d5461e670a15771e90d5eab98a88b0f5417bf0 +SIZE (mkvtoolnix-6.0.0.tar.xz) = 3766204 diff -Naur mkvtoolnix.orig/pkg-plist mkvtoolnix/pkg-plist --- mkvtoolnix.orig/pkg-plist 2012-09-28 13:55:18.000000000 +0200 +++ mkvtoolnix/pkg-plist 2013-02-17 12:17:23.000000000 +0100 @@ -5,6 +5,79 @@ %%GUI%%bin/mmg %%GUI%%share/applications/mkvinfo.desktop %%GUI%%share/applications/mkvmergeGUI.desktop +%%GUI%%%%DOCSDIR%%/guide/en/images/addingremovingattachments.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/addremovefiles.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/attachmentoptions.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/audiotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/chaptereditor.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/generaltrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/jobmanager.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/movietitle.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/muxingwindow.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/selectmkvmergeexecutable.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/splitting.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/textsubtitlestrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/trackselection.gif +%%GUI%%%%DOCSDIR%%/guide/en/images/videotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/en/mkvmerge-gui.hhc +%%GUI%%%%DOCSDIR%%/guide/en/mkvmerge-gui.hhk +%%GUI%%%%DOCSDIR%%/guide/en/mkvmerge-gui.hhp +%%GUI%%%%DOCSDIR%%/guide/en/mkvmerge-gui.html +%%GUI%%%%DOCSDIR%%/guide/es/images/addingremovingattachments.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/addremovefiles.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/attachmentoptions.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/audiotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/chaptereditor.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/generaltrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/jobmanager.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/movietitle.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/muxingwindow.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/selectmkvmergeexecutable.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/splitting.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/textsubtitlestrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/trackselection.gif +%%GUI%%%%DOCSDIR%%/guide/es/images/videotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/es/mkvmerge-gui.hhc +%%GUI%%%%DOCSDIR%%/guide/es/mkvmerge-gui.hhk +%%GUI%%%%DOCSDIR%%/guide/es/mkvmerge-gui.hhp +%%GUI%%%%DOCSDIR%%/guide/es/mkvmerge-gui.html +%%GUI%%%%DOCSDIR%%/guide/eu/images/addingremovingattachments.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/addremovefiles.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/attachmentoptions.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/audiotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/chaptereditor.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/generaltrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/headereditor.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/jobmanager.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/movietitle.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/muxingwindow.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/selectmkvmergeexecutable.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/splitting.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/textsubtitlestrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/trackselection.gif +%%GUI%%%%DOCSDIR%%/guide/eu/images/videotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhc +%%GUI%%%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhk +%%GUI%%%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhp +%%GUI%%%%DOCSDIR%%/guide/eu/mkvmerge-gui.html +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/addingremovingattachments.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/addremovefiles.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/attachmentoptions.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/audiotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/chaptereditor.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/generaltrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/jobmanager.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/movietitle.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/muxingwindow.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/selectmkvmergeexecutable.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/splitting.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/textsubtitlestrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/trackselection.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/images/videotrackoptions.gif +%%GUI%%%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhc +%%GUI%%%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhk +%%GUI%%%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhp +%%GUI%%%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.html %%GUI%%share/icons/hicolor/16x16/apps/mkvextract.png %%GUI%%share/icons/hicolor/16x16/apps/mkvinfo.png %%GUI%%share/icons/hicolor/16x16/apps/mkvmerge.png @@ -61,93 +134,40 @@ share/locale/zh_CN/LC_MESSAGES/mkvtoolnix.mo share/locale/zh_TW/LC_MESSAGES/mkvtoolnix.mo %%GUI%%share/mime/packages/mkvtoolnix.xml -%%DOCSDIR%%/guide/en/images/addingremovingattachments.gif -%%DOCSDIR%%/guide/en/images/addremovefiles.gif -%%DOCSDIR%%/guide/en/images/attachmentoptions.gif -%%DOCSDIR%%/guide/en/images/audiotrackoptions.gif -%%DOCSDIR%%/guide/en/images/chaptereditor.gif -%%DOCSDIR%%/guide/en/images/generaltrackoptions.gif -%%DOCSDIR%%/guide/en/images/jobmanager.gif -%%DOCSDIR%%/guide/en/images/movietitle.gif -%%DOCSDIR%%/guide/en/images/muxingwindow.gif -%%DOCSDIR%%/guide/en/images/selectmkvmergeexecutable.gif -%%DOCSDIR%%/guide/en/images/splitting.gif -%%DOCSDIR%%/guide/en/images/textsubtitlestrackoptions.gif -%%DOCSDIR%%/guide/en/images/trackselection.gif -%%DOCSDIR%%/guide/en/images/videotrackoptions.gif -%%DOCSDIR%%/guide/en/mkvmerge-gui.hhc -%%DOCSDIR%%/guide/en/mkvmerge-gui.hhk -%%DOCSDIR%%/guide/en/mkvmerge-gui.hhp -%%DOCSDIR%%/guide/en/mkvmerge-gui.html -%%DOCSDIR%%/guide/es/images/addingremovingattachments.gif -%%DOCSDIR%%/guide/es/images/addremovefiles.gif -%%DOCSDIR%%/guide/es/images/attachmentoptions.gif -%%DOCSDIR%%/guide/es/images/audiotrackoptions.gif -%%DOCSDIR%%/guide/es/images/chaptereditor.gif -%%DOCSDIR%%/guide/es/images/generaltrackoptions.gif -%%DOCSDIR%%/guide/es/images/jobmanager.gif -%%DOCSDIR%%/guide/es/images/movietitle.gif -%%DOCSDIR%%/guide/es/images/muxingwindow.gif -%%DOCSDIR%%/guide/es/images/selectmkvmergeexecutable.gif -%%DOCSDIR%%/guide/es/images/splitting.gif -%%DOCSDIR%%/guide/es/images/textsubtitlestrackoptions.gif -%%DOCSDIR%%/guide/es/images/trackselection.gif -%%DOCSDIR%%/guide/es/images/videotrackoptions.gif -%%DOCSDIR%%/guide/es/mkvmerge-gui.hhc -%%DOCSDIR%%/guide/es/mkvmerge-gui.hhk -%%DOCSDIR%%/guide/es/mkvmerge-gui.hhp -%%DOCSDIR%%/guide/es/mkvmerge-gui.html -%%DOCSDIR%%/guide/eu/images/addingremovingattachments.gif -%%DOCSDIR%%/guide/eu/images/addremovefiles.gif -%%DOCSDIR%%/guide/eu/images/attachmentoptions.gif -%%DOCSDIR%%/guide/eu/images/audiotrackoptions.gif -%%DOCSDIR%%/guide/eu/images/chaptereditor.gif -%%DOCSDIR%%/guide/eu/images/generaltrackoptions.gif -%%DOCSDIR%%/guide/eu/images/headereditor.gif -%%DOCSDIR%%/guide/eu/images/jobmanager.gif -%%DOCSDIR%%/guide/eu/images/movietitle.gif -%%DOCSDIR%%/guide/eu/images/muxingwindow.gif -%%DOCSDIR%%/guide/eu/images/selectmkvmergeexecutable.gif -%%DOCSDIR%%/guide/eu/images/splitting.gif -%%DOCSDIR%%/guide/eu/images/textsubtitlestrackoptions.gif -%%DOCSDIR%%/guide/eu/images/trackselection.gif -%%DOCSDIR%%/guide/eu/images/videotrackoptions.gif -%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhc -%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhk -%%DOCSDIR%%/guide/eu/mkvmerge-gui.hhp -%%DOCSDIR%%/guide/eu/mkvmerge-gui.html -%%DOCSDIR%%/guide/zh_CN/images/addingremovingattachments.gif -%%DOCSDIR%%/guide/zh_CN/images/addremovefiles.gif -%%DOCSDIR%%/guide/zh_CN/images/attachmentoptions.gif -%%DOCSDIR%%/guide/zh_CN/images/audiotrackoptions.gif -%%DOCSDIR%%/guide/zh_CN/images/chaptereditor.gif -%%DOCSDIR%%/guide/zh_CN/images/generaltrackoptions.gif -%%DOCSDIR%%/guide/zh_CN/images/jobmanager.gif -%%DOCSDIR%%/guide/zh_CN/images/movietitle.gif -%%DOCSDIR%%/guide/zh_CN/images/muxingwindow.gif -%%DOCSDIR%%/guide/zh_CN/images/selectmkvmergeexecutable.gif -%%DOCSDIR%%/guide/zh_CN/images/splitting.gif -%%DOCSDIR%%/guide/zh_CN/images/textsubtitlestrackoptions.gif -%%DOCSDIR%%/guide/zh_CN/images/trackselection.gif -%%DOCSDIR%%/guide/zh_CN/images/videotrackoptions.gif -%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhc -%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhk -%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.hhp -%%DOCSDIR%%/guide/zh_CN/mkvmerge-gui.html +@dirrmtry share/mime/packages +@dirrmtry share/mime +%%GUI%%@dirrmtry share/icons/hicolor/96x96/apps +%%GUI%%@dirrmtry share/icons/hicolor/96x96 +%%GUI%%@dirrmtry share/icons/hicolor/64x64/apps +%%GUI%%@dirrmtry share/icons/hicolor/64x64 +%%GUI%%@dirrmtry share/icons/hicolor/48x48/apps +%%GUI%%@dirrmtry share/icons/hicolor/48x48 +%%GUI%%@dirrmtry share/icons/hicolor/32x32/apps +%%GUI%%@dirrmtry share/icons/hicolor/32x32 +%%GUI%%@dirrmtry share/icons/hicolor/256x256/apps +%%GUI%%@dirrmtry share/icons/hicolor/256x256 +%%GUI%%@dirrmtry share/icons/hicolor/24x24/apps +%%GUI%%@dirrmtry share/icons/hicolor/24x24 +%%GUI%%@dirrmtry share/icons/hicolor/16x16/apps +%%GUI%%@dirrmtry share/icons/hicolor/16x16 +%%GUI%%@dirrmtry share/icons/hicolor/128x128/apps +%%GUI%%@dirrmtry share/icons/hicolor/128x128 +%%GUI%%@dirrmtry share/icons/hicolor +%%GUI%%@dirrmtry share/icons @dirrmtry man/zh_CN/man1 @dirrmtry man/zh_CN @dirrmtry man/uk/man1 @dirrmtry man/uk @dirrmtry man/nl/man1 @dirrmtry man/nl -@dirrm %%DOCSDIR%%/guide/zh_CN/images -@dirrm %%DOCSDIR%%/guide/zh_CN -@dirrm %%DOCSDIR%%/guide/eu/images -@dirrm %%DOCSDIR%%/guide/eu -@dirrm %%DOCSDIR%%/guide/es/images -@dirrm %%DOCSDIR%%/guide/es -@dirrm %%DOCSDIR%%/guide/en/images -@dirrm %%DOCSDIR%%/guide/en -@dirrm %%DOCSDIR%%/guide -@dirrm %%DOCSDIR%% +%%GUI%%@dirrm %%DOCSDIR%%/guide/zh_CN/images +%%GUI%%@dirrm %%DOCSDIR%%/guide/zh_CN +%%GUI%%@dirrm %%DOCSDIR%%/guide/eu/images +%%GUI%%@dirrm %%DOCSDIR%%/guide/eu +%%GUI%%@dirrm %%DOCSDIR%%/guide/es/images +%%GUI%%@dirrm %%DOCSDIR%%/guide/es +%%GUI%%@dirrm %%DOCSDIR%%/guide/en/images +%%GUI%%@dirrm %%DOCSDIR%%/guide/en +%%GUI%%@dirrm %%DOCSDIR%%/guide +%%GUI%%@dirrm %%DOCSDIR%% %%GUI%%@dirrmtry share/applications --------------010405020400090002090603-- From owner-freebsd-multimedia@FreeBSD.ORG Sun Feb 17 17:35:56 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BD1FA8E5 for ; Sun, 17 Feb 2013 17:35:56 +0000 (UTC) (envelope-from freebsd@chthonixia.net) Received: from www5.pairlite.com (www5.pairlite.com [64.130.10.15]) by mx1.freebsd.org (Postfix) with ESMTP id 9954AB3 for ; Sun, 17 Feb 2013 17:35:56 +0000 (UTC) Received: from whisperer.chthonixia.net (unknown [184.152.30.105]) by www5.pairlite.com (Postfix) with ESMTPSA id F36A42E2E0; Sun, 17 Feb 2013 12:25:58 -0500 (EST) Date: Sun, 17 Feb 2013 12:26:41 -0500 From: Joe Altman To: freebsd-multimedia@freebsd.org, Hans Petter Selasky Subject: Wacom Tablets Message-ID: <20130217172641.GA12691@whisperer.chthonixia.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2013 17:35:56 -0000 Greetings... I have installed the necessary bits for a new Wacom tablet. I noticed during the make install this message: ********************************************************************* 1) webcamd requires the cuse4bsd kernel module, please load this by doing # kldload cuse4bsd or adding cuse4bsd_load="YES" to your /boot/loader.conf. 2) Please restart devd as the configuration changed # service devd restart ********************************************************************* I don't see this listed at the Wiki: https://wiki.freebsd.org/WacomTablet I want to check to be sure WRT what to do: I should add the above to /boot/loader.conf? Or is there some sort of /etc.rc.conf entry that may be missing for cuse4bsd? Thanks, Joe From owner-freebsd-multimedia@FreeBSD.ORG Sun Feb 17 19:29:24 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 90E49A80 for ; Sun, 17 Feb 2013 19:29:24 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe03.c2i.net [212.247.154.66]) by mx1.freebsd.org (Postfix) with ESMTP id 2BAED391 for ; Sun, 17 Feb 2013 19:29:23 +0000 (UTC) X-T2-Spam-Status: No, hits=0.8 required=5.0 tests=BAYES_50 Received: from [176.74.213.204] (account mc467741@c2i.net HELO laptop015.hselasky.homeunix.org) by mailfe03.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 211577242; Sun, 17 Feb 2013 20:29:15 +0100 From: Hans Petter Selasky To: Joe Altman Subject: Re: Wacom Tablets Date: Sun, 17 Feb 2013 20:30:29 +0100 User-Agent: KMail/1.13.7 (FreeBSD/9.1-STABLE; KDE/4.8.4; amd64; ; ) References: <20130217172641.GA12691@whisperer.chthonixia.net> In-Reply-To: <20130217172641.GA12691@whisperer.chthonixia.net> X-Face: ?p&W)c(+80hU; '{.$5K+zq{oC6y| /D'an*6mw>j'f:eBsex\Gi, Cc: freebsd-multimedia@freebsd.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2013 19:29:24 -0000 On Sunday 17 February 2013 18:26:41 Joe Altman wrote: > cuse4bsd_load="YES" Added: http://wiki.freebsd.org/WacomTablet Thank you! --HPS From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 18 11:06:48 2013 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 91433214 for ; Mon, 18 Feb 2013 11:06:48 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 75653E2D for ; Mon, 18 Feb 2013 11:06:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r1IB6mP4061612 for ; Mon, 18 Feb 2013 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r1IB6m11061610 for freebsd-multimedia@FreeBSD.org; Mon, 18 Feb 2013 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 18 Feb 2013 11:06:48 GMT Message-Id: <201302181106.r1IB6m11061610@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-multimedia@FreeBSD.org Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2013 11:06:48 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). 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/175965 multimedia multimedia/libmpeg2 don't register x11 deps o ports/175963 multimedia graphics/libcaca o ports/175941 multimedia audio/gstreamer-plugins-ladspa add missing dependency o ports/175940 multimedia multimedia/gstreamer-plugins-good add missing dependen o ports/175865 multimedia audio/denemo 0.9.2_2 does not build o kern/175306 multimedia [snd_hda] snd_hda does not produce 7.1 sound on ALC892 o kern/175220 multimedia [sound] sound stopping: play interrupt timeout, channe f ports/175008 multimedia audio/gstreamer-plugins-soundtouch C++ compiler error o kern/174876 multimedia [sound] After upgrading to 9-STABLE from 9.0-RELEASE p o kern/174828 multimedia [sound] [snd_emu10kx]: "Creative SB PCI512 [CT4790]" i o kern/174796 multimedia [emu10kx]: Audigy ZS driver produce strange noises o kern/174573 multimedia [snd_hda] headphones on front panel not working anymor o ports/174338 multimedia [patch] multimedia/mkvtoolnix: update to 5.9.0 o ports/174287 multimedia multimedia/gstreamer-plugins-good fails to compile wit o ports/173895 multimedia [PATCH] unbreak multimedia/linux-realplayer o ports/173891 multimedia Living MASTER_SITES for multimedia/linux-realplayer o ports/173741 multimedia multimedia/dirac fails to compile with clang o ports/172185 multimedia multimedia/vlc build fail with gmake core dump at modu o ports/172128 multimedia building multimedia/vlc fails o kern/171937 multimedia [pcm] Notebook Toshiba Satellite C850-B1K and problem o ports/171888 multimedia [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 o ports/171248 multimedia multimedia/win32-codecs: Fix pkg-plist o kern/171191 multimedia [snd_cmi] [request] add driver support for cmi8787/878 o ports/170517 multimedia [patch] Correct audio/jack Dependency Declaration o ports/170032 multimedia Some ports not bumped after libogg update o ports/169563 multimedia [patch] audio/jack-rack o ports/165090 multimedia audio/faad missing head files o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o ports/161546 multimedia [PATCH] multimedia/mkvtoolnix: make some dependencies o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl a ports/153735 multimedia multimedia/vlc: install error: `Permission denied' for o kern/152622 multimedia [pcm] uaudio recording problem o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150284 multimedia [snd_hda] No gain with Audio o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 98 problems total. From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 18 13:26:55 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EDDAF534 for ; Mon, 18 Feb 2013 13:26:55 +0000 (UTC) (envelope-from freebsd@chthonixia.net) Received: from www5.pairlite.com (www5.pairlite.com [64.130.10.15]) by mx1.freebsd.org (Postfix) with ESMTP id C7CDCC16 for ; Mon, 18 Feb 2013 13:26:55 +0000 (UTC) Received: from whisperer.chthonixia.net (unknown [184.152.30.105]) by www5.pairlite.com (Postfix) with ESMTPSA id A0DDB2E2D8; Mon, 18 Feb 2013 08:26:52 -0500 (EST) Date: Mon, 18 Feb 2013 08:27:37 -0500 From: Joe Altman To: freebsd-multimedia@freebsd.org, Hans Petter Selasky Subject: Re: Wacom Tablets Message-ID: <20130218132737.GA3258@whisperer.chthonixia.net> References: <20130217172641.GA12691@whisperer.chthonixia.net> <201302172030.29477.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201302172030.29477.hselasky@c2i.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2013 13:26:56 -0000 On Sun, Feb 17, 2013 at 08:30:29PM +0100, Hans Petter Selasky wrote: > On Sunday 17 February 2013 18:26:41 Joe Altman wrote: > > cuse4bsd_load="YES" > > Added: > http://wiki.freebsd.org/WacomTablet So far, mixed results mostly unsuccessful. Is anything on this page relevant? https://wiki.freebsd.org/action/recall/WacomTablet?action=recall&rev=3 1) I'm guessing there is some sort of moused issue: I attempted to turn it off in /etc/rc.conf. I'm not sure how to describe the results more clearly than "that's odd." What I used: moused_nondefault_enable="NO" moused_enable="NO" It was only in this case that the tablet appeared in Inkscape, but the behavior was odd. It was late at night when I was trying this, and I don't recall what happened with Gimp, but it generally failed. 2) Perhaps an issue with devfs.rules? I tried various rules but they were not helpful. If I understand the main Wiki page, the tablet should just work with these entries: rc.conf: devd_enable="YES" hald_enable="YES" webcamd_enable="YES" loader.conf: cuse4bsd_load="YES" The tablet is a Wacom Bamboo Capture, model CTH-470. Thanks for your help, and best regards, Joe From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 18 15:04:24 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7B99A986 for ; Mon, 18 Feb 2013 15:04:24 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.c2i.net [212.247.154.226]) by mx1.freebsd.org (Postfix) with ESMTP id 04013268 for ; Mon, 18 Feb 2013 15:04:23 +0000 (UTC) X-T2-Spam-Status: No, hits=0.8 required=5.0 tests=BAYES_50 Received: from [176.74.213.204] (account mc467741@c2i.net HELO laptop015.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 380137726; Mon, 18 Feb 2013 16:04:14 +0100 From: Hans Petter Selasky To: Joe Altman Subject: Re: Wacom Tablets Date: Mon, 18 Feb 2013 16:05:29 +0100 User-Agent: KMail/1.13.7 (FreeBSD/9.1-STABLE; KDE/4.8.4; amd64; ; ) References: <20130217172641.GA12691@whisperer.chthonixia.net> <201302172030.29477.hselasky@c2i.net> <20130218132737.GA3258@whisperer.chthonixia.net> In-Reply-To: <20130218132737.GA3258@whisperer.chthonixia.net> X-Face: ?p&W)c(+80hU; '{.$5K+zq{oC6y| /D'an*6mw>j'f:eBsex\Gi, Cc: freebsd-multimedia@freebsd.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2013 15:04:24 -0000 On Monday 18 February 2013 14:27:37 Joe Altman wrote: > On Sun, Feb 17, 2013 at 08:30:29PM +0100, Hans Petter Selasky wrote: > > On Sunday 17 February 2013 18:26:41 Joe Altman wrote: > > > cuse4bsd_load="YES" > > > > Added: > > http://wiki.freebsd.org/WacomTablet > > So far, mixed results mostly unsuccessful. Hi, What version of webcamd and kernel do you have. You need to run 3.9.0.5 for webcamd and -stable or -current. --HPS From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 18 18:09:18 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 67A682BE for ; Mon, 18 Feb 2013 18:09:18 +0000 (UTC) (envelope-from freebsd@chthonixia.net) Received: from www5.pairlite.com (www5.pairlite.com [64.130.10.15]) by mx1.freebsd.org (Postfix) with ESMTP id 4896CD36 for ; Mon, 18 Feb 2013 18:09:17 +0000 (UTC) Received: from whisperer.chthonixia.net (unknown [184.152.30.105]) by www5.pairlite.com (Postfix) with ESMTPSA id 7BD9D2E320; Mon, 18 Feb 2013 13:09:08 -0500 (EST) Date: Mon, 18 Feb 2013 13:09:55 -0500 From: Joe Altman To: Hans Petter Selasky Subject: Re: Wacom Tablets Message-ID: <20130218180955.GA6995@whisperer.chthonixia.net> References: <20130217172641.GA12691@whisperer.chthonixia.net> <201302172030.29477.hselasky@c2i.net> <20130218132737.GA3258@whisperer.chthonixia.net> <201302181605.29379.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201302181605.29379.hselasky@c2i.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-multimedia@freebsd.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2013 18:09:18 -0000 On Mon, Feb 18, 2013 at 04:05:29PM +0100, Hans Petter Selasky wrote: > > Hi, > > What version of webcamd and kernel do you have. You need to run > 3.9.0.5 for webcamd and -stable or -current. Oh; my bad, then. I was looking only at your Jan. 12 email to multimedia@ announcing the wiki page; that message did not mention 3.9.0.5; I missed that the port I am using is 3.9.0.4 and so assumed that I was using the correct port. I suppose, then, that I am more or less between a new way to use a tablet and an older way that requires xorg.conf mods? It seems to me that it's best that I wait for 3.9.0.5 to show up in the ports rather than jumping to the older(?) xorg.conf method. Any thoughts on that? My kernel is 9.1-STABLE FreeBSD 9.1-STABLE #0 r246887: Sat Feb 16 21:46:34 EST 2013. I assume this will work, once 3.9.0.5 is released into the ports tree? Thanks for your help, Joe From owner-freebsd-multimedia@FreeBSD.ORG Mon Feb 18 18:58:52 2013 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 948B713F for ; Mon, 18 Feb 2013 18:58:52 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.c2i.net [212.247.154.226]) by mx1.freebsd.org (Postfix) with ESMTP id 2EBF7F6C for ; Mon, 18 Feb 2013 18:58:51 +0000 (UTC) X-T2-Spam-Status: No, hits=0.8 required=5.0 tests=BAYES_50 Received: from [176.74.213.204] (account mc467741@c2i.net HELO laptop015.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.4.4) with ESMTPA id 380196957; Mon, 18 Feb 2013 19:58:50 +0100 From: Hans Petter Selasky To: Joe Altman Subject: Re: Wacom Tablets Date: Mon, 18 Feb 2013 20:00:03 +0100 User-Agent: KMail/1.13.7 (FreeBSD/9.1-STABLE; KDE/4.8.4; amd64; ; ) References: <20130217172641.GA12691@whisperer.chthonixia.net> <201302181605.29379.hselasky@c2i.net> <20130218180955.GA6995@whisperer.chthonixia.net> In-Reply-To: <20130218180955.GA6995@whisperer.chthonixia.net> X-Face: ?p&W)c(+80hU; '{.$5K+zq{oC6y| /D'an*6mw>j'f:eBsex\Gi, Cc: freebsd-multimedia@freebsd.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2013 18:58:52 -0000 On Monday 18 February 2013 19:09:55 Joe Altman wrote: > On Mon, Feb 18, 2013 at 04:05:29PM +0100, Hans Petter Selasky wrote: > > Hi, > > > > What version of webcamd and kernel do you have. You need to run > > 3.9.0.5 for webcamd and -stable or -current. > > Oh; my bad, then. I was looking only at your Jan. 12 email to > multimedia@ announcing the wiki page; that message did not mention > 3.9.0.5; I missed that the port I am using is 3.9.0.4 and so assumed > that I was using the correct port. > > I suppose, then, that I am more or less between a new way to use a > tablet and an older way that requires xorg.conf mods? It seems to me > that it's best that I wait for 3.9.0.5 to show up in the ports rather > than jumping to the older(?) xorg.conf method. Any thoughts on that? > > My kernel is 9.1-STABLE FreeBSD 9.1-STABLE #0 r246887: Sat Feb 16 > 21:46:34 EST 2013. I assume this will work, once 3.9.0.5 is released > into the ports tree? > > Thanks for your help, > > Joe Hi, Any version after r246787 is fine. You can install webcamd 3.9.0.5 without any problems. No xorg.conf changes or configuration needed. --HPS From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 19 04:24:34 2013 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3CC1B254 for ; Tue, 19 Feb 2013 04:24:34 +0000 (UTC) (envelope-from john.a.schneider@gmail.com) Received: from mail-ve0-f171.google.com (mail-ve0-f171.google.com [209.85.128.171]) by mx1.freebsd.org (Postfix) with ESMTP id F1998AA8 for ; Tue, 19 Feb 2013 04:24:33 +0000 (UTC) Received: by mail-ve0-f171.google.com with SMTP id b10so5424185vea.16 for ; Mon, 18 Feb 2013 20:24:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=PcJ8SwrIykjNZCkGq4jjbs9Ze7fWe5QRnNNBzVkvrdk=; b=01+pF9kb/ugYEeMDHqVnr5FkKANPfA/kHswQ2ctL9iIMod2+4RXrUF+BbFb7uiRemc qkCpLKtGMq0GsyVQsvsylgL0jZUzvVKBWS7h9tganQJxuJdEOYECQ4PvfSFFw1LtXgC4 E9PipUB9Vyo8BjoHKL67+W4Ugg+KEvCDErX1PBaM5OROA/WUnhSJlYquREiI4iHCyzTG MkwaQyR4UoLt/ACG/oAbbzVcR2/4VOgok7+W2lQKuAoSXSmwJr+DVGRrfDHIo9Gx0YAu Xib52+/rTM6pufi2iNhmnRWUiAGKqbjbljKD+y+VsO8EArVKSXYv75GL9QQXE7v9JsAm q11w== MIME-Version: 1.0 X-Received: by 10.220.149.198 with SMTP id u6mr18421354vcv.52.1361247867007; Mon, 18 Feb 2013 20:24:27 -0800 (PST) Received: by 10.52.69.7 with HTTP; Mon, 18 Feb 2013 20:24:26 -0800 (PST) Date: Mon, 18 Feb 2013 23:24:26 -0500 Message-ID: Subject: VLC Can't Play MKV Files With 9.1 / Clang From: John Schneider To: multimedia@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2013 04:24:34 -0000 Hi, Version 2.0.5,3 recently introduced a Makefile change to build with Clang on 9.1+. Unfortunately, I've found that MKV files will no longer play after being built with Clang. Commenting out this change and rebuilding with base GCC results in MKV files playing just fine. John From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 19 14:22:25 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5966FF12 for ; Tue, 19 Feb 2013 14:22:25 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 1E3318BB for ; Tue, 19 Feb 2013 14:22:25 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r1JEMOIa074199 for ; Tue, 19 Feb 2013 09:22:24 -0500 (EST) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r1JEMOeV073915; Tue, 19 Feb 2013 09:22:24 -0500 (EST) (envelope-from portscout) Message-Id: <201302191422.r1JEMOeV073915@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Tue, 19 Feb 2013 09:22:24 -0500 From: portscout@portscout.freebsd.org To: multimedia@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2013 14:22:25 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/multimedia@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ multimedia/dvdstyler | 2.1 | 2.4.1 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-multimedia@FreeBSD.ORG Wed Feb 20 19:50:01 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A0485E73 for ; Wed, 20 Feb 2013 19:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 767CBF9B for ; Wed, 20 Feb 2013 19:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r1KJo0iK043232 for ; Wed, 20 Feb 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r1KJo0Uu043231; Wed, 20 Feb 2013 19:50:00 GMT (envelope-from gnats) Date: Wed, 20 Feb 2013 19:50:00 GMT Message-Id: <201302201950.r1KJo0Uu043231@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: The BSD Dreamer Subject: Re: ports/175008: audio/gstreamer-plugins-soundtouch C++ compiler error "no matching function for call" X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The BSD Dreamer List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2013 19:50:01 -0000 The following reply was made to PR ports/175008; it has been noted by GNATS. From: The BSD Dreamer To: bug-followup@FreeBSD.org, xenophon+freebsd@irtnog.org Cc: Subject: Re: ports/175008: audio/gstreamer-plugins-soundtouch C++ compiler error "no matching function for call" Date: Wed, 20 Feb 2013 13:49:14 -0600 I got it to compile finally by first rebuilding audio/soundtouch with INTEGER_SAMPLES = off (default). From owner-freebsd-multimedia@FreeBSD.ORG Thu Feb 21 12:23:39 2013 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 673135E7 for ; Thu, 21 Feb 2013 12:23:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 5A8738D5 for ; Thu, 21 Feb 2013 12:23:39 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r1L8TMP1085867 for ; Thu, 21 Feb 2013 08:29:22 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 21 Feb 2013 08:29:22 GMT Message-Id: <201302210829.r1L8TMP1085867@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: multimedia@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently scheduled for deletion X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2013 12:23:39 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: multimedia/linux-realplayer description: Linux RealPlayer 10 from RealNetworks maintainer: multimedia@FreeBSD.org status: BROKEN deprecated because: Broken for more than 6 month expiration date: 2013-03-05 build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-realplayer-10.0.9.809.20070726_3.log (_Jun_13_02:24:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-realplayer If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-multimedia@FreeBSD.ORG Thu Feb 21 12:25:04 2013 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A185C89B for ; Thu, 21 Feb 2013 12:25:04 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 788A9971 for ; Thu, 21 Feb 2013 12:25:04 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r1L8SSQX080197 for ; Thu, 21 Feb 2013 08:28:28 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 21 Feb 2013 08:28:28 GMT Message-Id: <201302210828.r1L8SSQX080197@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: multimedia@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2013 12:25:04 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: multimedia/linux-realplayer broken because: unfetchable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-realplayer-10.0.9.809.20070726_3.log (_Jun_13_02:24:52_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-realplayer If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD.