From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 18 13:15:01 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6EAC8532; Sun, 18 Aug 2013 13:15:01 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id E7CF426F5; Sun, 18 Aug 2013 13:15:00 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id EBA351E007B5; Sun, 18 Aug 2013 15:14:52 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.5/8.14.4) with ESMTP id r7IDDbTw040386; Sun, 18 Aug 2013 15:13:37 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.5/8.14.3/Submit) id r7IDDbFo040385; Sun, 18 Aug 2013 15:13:37 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 18 Aug 2013 15:13:37 +0200 To: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= Subject: Re: xbmc-pvr-addons: on the way to xbmc pvr Message-ID: <20130818131337.GA40218@triton8.kn-bremen.de> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: nox@freebsd.org, 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, 18 Aug 2013 13:15:01 -0000 On Sat, Aug 17, 2013 at 11:23:50AM +0200, Bernhard Fröhlich wrote: > Hi guys, Hi! > > now that we have xbmc 12.2 and tvheadend in the portstree the next > step to a proper PVR solution running on FreeBSD is to add the xbmc > pvr addons that allow to use various backends like tvheadend. > > I have already created a port for the pvr addons that builds and > installs just fine but for some reason xbmc doesn't like them and > doesn't even display them in the GUI or any errors in the logfile. > > To try out the xbmc-pvr-addons port: > svn co https://svn.redports.org/decke/multimedia/xbmc-addon-pvr > > It should build and install fine but it doesn't seem to have any > effect on xbmc. You can also build ZIP packages for the addons that > you can try to install via the Addon manager. > > Build zip addons: > cd xbmc-addon-pvr && make && cd work/xbmc-pvr-addons-12.0-Frodo && make zip > > Install ZIP addons: > http://wiki.xbmc.org/index.php?title=Add-on_manager#How_to_install_from_a_ZIP_file > > With the ZIP files I always get "Add-on does not have the correct > structure" immediately. No log message that tells why it's > complaining. > > > There was one error in the logfile with stock multimedia/xbmc 12.2 > that I fixed on the way: > ERROR: PVR - CreateTables - failed to get add-ons from the add-on manager > > I fixed it with the following patch that I also needed for xbmc-pvr-addons. > http://people.freebsd.org/~decke/patches/xbmc-12.2_1-addon-fix.diff > > > So we are pretty close to a working xbmc pvr because the requires > parts are all there already. We have an up-to-date xbmc 12.2 in the > tree. tvheadend with FreeBSD support from latest git is also available > in multimedia/tvheadend and works fine with webcamd devices. The > xbmc-pvr-addons port is also there already. All that is left is > getting that parts working in combination. > > I hope someone has an idea what is going on there or how to fix that. :o) > I finally got around looking at this and turns out the fix is really simple if you know it: xbmc seems to look for linux in the addon.xml files not freebsd. I added back freebsd too in case this gets fixed later tho. (first post-patch REINPLACE_CMD.) Index: Makefile =================================================================== --- Makefile (revision 15743) +++ Makefile (working copy) @@ -17,7 +17,6 @@ BUILD_DEPENDS+= xbmc:${PORTSDIR}/multimedia/xbmc RUN_DEPENDS+= xbmc:${PORTSDIR}/multimedia/xbmc -PATCH_ARGS= --suffix "" USE_GL= gl USE_AUTOTOOLS= libtoolize aclocal libtool automake autoconf MAKE_JOBS_SAFE= yes @@ -29,8 +28,10 @@ .include post-patch: + @${REINPLACE_CMD} 's|@OS@|freebsd linux|' \ + ${WRKSRC}/addons/*/addon/addon.xml.in @${REINPLACE_CMD} 's|-ldl||' \ ${WRKSRC}/addons/pvr.hts/Makefile.am - @${RM} ${WRKSRC}/addons/*/*.orig + @${RM} ${WRKSRC}/addons/*/*/*.orig .include HTH, :) Juergen From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 18 14:12:41 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 10B369AF for ; Sun, 18 Aug 2013 14:12:41 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-ob0-x229.google.com (mail-ob0-x229.google.com [IPv6:2607:f8b0:4003:c01::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C8F042929 for ; Sun, 18 Aug 2013 14:12:40 +0000 (UTC) Received: by mail-ob0-f169.google.com with SMTP id wc20so3868586obb.14 for ; Sun, 18 Aug 2013 07:12:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=gevey3eYRxmIGF3po/4RMRxH0wbGhLJugxE69+CQu54=; b=Ntlr5EBfzKx35hdGeMJNtDJ+bN33PLqprPU0XGborvpVO8dgWyE7nRnpUEpXCeHkTK Vf2xg+wb7Dv+OySNCbu8MWhJd/xoNabwqckiikNyzeelebKm0WE6lTdIxXp+gl3rvffa 1zGlOAuD7wmo4hIXugPEbakibIRW5sCzKDRVg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=gevey3eYRxmIGF3po/4RMRxH0wbGhLJugxE69+CQu54=; b=VkLIbFTDeA3iIhQsdLTRTqTg6h7qeELGaBo2lniEbCqKczlouJtc/nKCxBpuTYGdrl VUcHajZcUxCuwrovIdS15+CG+nUyWQYwpMd7tjxYRMiMeQWrvohbKaCNqAapeun6sgO6 +zuChPR+qPE5rqF014xK5vdHBrh4r6MF2iPtw+DNuhIhaFnRxisC4VsCdiFxM24XUd6F OPxWnGi0231TfOMb2MkdU83rCdvaYuqvv1kBvstW8yQkkSl3tD2jqeTj7kR+zx2Yk6ye NrPNYGP+/rKai4YCykLwoiO1KzEg1HGkLSd1TwZANIIvLOJhTL84fjjyXB1lsavGfBOj 7c1Q== X-Gm-Message-State: ALoCoQmV95BYyMM7e/wVW+a/MVs25k0tLODq7mLY1AQQavsdX7iOEOLl7tdcv3Vc1mBN0mGXuQcS MIME-Version: 1.0 X-Received: by 10.60.70.134 with SMTP id m6mr7917617oeu.14.1376835160044; Sun, 18 Aug 2013 07:12:40 -0700 (PDT) Received: by 10.76.95.168 with HTTP; Sun, 18 Aug 2013 07:12:39 -0700 (PDT) X-Originating-IP: [46.74.189.12] In-Reply-To: <20130818131337.GA40218@triton8.kn-bremen.de> References: <20130818131337.GA40218@triton8.kn-bremen.de> Date: Sun, 18 Aug 2013 16:12:39 +0200 Message-ID: Subject: Re: xbmc-pvr-addons: on the way to xbmc pvr From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: Juergen Lock Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: nox@freebsd.org, 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, 18 Aug 2013 14:12:41 -0000 On Sun, Aug 18, 2013 at 3:13 PM, Juergen Lock wrot= e: > On Sat, Aug 17, 2013 at 11:23:50AM +0200, Bernhard Fr=F6hlich wrote: >> Hi guys, > Hi! >> >> now that we have xbmc 12.2 and tvheadend in the portstree the next >> step to a proper PVR solution running on FreeBSD is to add the xbmc >> pvr addons that allow to use various backends like tvheadend. >> >> I have already created a port for the pvr addons that builds and >> installs just fine but for some reason xbmc doesn't like them and >> doesn't even display them in the GUI or any errors in the logfile. >> >> To try out the xbmc-pvr-addons port: >> svn co https://svn.redports.org/decke/multimedia/xbmc-addon-pvr >> >> It should build and install fine but it doesn't seem to have any >> effect on xbmc. You can also build ZIP packages for the addons that >> you can try to install via the Addon manager. >> >> Build zip addons: >> cd xbmc-addon-pvr && make && cd work/xbmc-pvr-addons-12.0-Frodo && make = zip >> >> Install ZIP addons: >> http://wiki.xbmc.org/index.php?title=3DAdd-on_manager#How_to_install_fro= m_a_ZIP_file >> >> With the ZIP files I always get "Add-on does not have the correct >> structure" immediately. No log message that tells why it's >> complaining. >> >> >> There was one error in the logfile with stock multimedia/xbmc 12.2 >> that I fixed on the way: >> ERROR: PVR - CreateTables - failed to get add-ons from the add-on manage= r >> >> I fixed it with the following patch that I also needed for xbmc-pvr-addo= ns. >> http://people.freebsd.org/~decke/patches/xbmc-12.2_1-addon-fix.diff >> >> >> So we are pretty close to a working xbmc pvr because the requires >> parts are all there already. We have an up-to-date xbmc 12.2 in the >> tree. tvheadend with FreeBSD support from latest git is also available >> in multimedia/tvheadend and works fine with webcamd devices. The >> xbmc-pvr-addons port is also there already. All that is left is >> getting that parts working in combination. >> >> I hope someone has an idea what is going on there or how to fix that. :o= ) >> > I finally got around looking at this and turns out the fix is really > simple if you know it: xbmc seems to look for linux > in the addon.xml files not freebsd. I added back freebsd too in > case this gets fixed later tho. (first post-patch REINPLACE_CMD.) > > Index: Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- Makefile (revision 15743) > +++ Makefile (working copy) > @@ -17,7 +17,6 @@ > BUILD_DEPENDS+=3D xbmc:${PORTSDIR}/multimedia/xbmc > RUN_DEPENDS+=3D xbmc:${PORTSDIR}/multimedia/xbmc > > -PATCH_ARGS=3D --suffix "" > USE_GL=3D gl > USE_AUTOTOOLS=3D libtoolize aclocal libtool automake autoconf > MAKE_JOBS_SAFE=3D yes > @@ -29,8 +28,10 @@ > .include > > post-patch: > + @${REINPLACE_CMD} 's|@OS@|freebsd linux|' \ > + ${WRKSRC}/addons/*/addon/addon.xml.in > @${REINPLACE_CMD} 's|-ldl||' \ > ${WRKSRC}/addons/pvr.hts/Makefile.am > - @${RM} ${WRKSRC}/addons/*/*.orig > + @${RM} ${WRKSRC}/addons/*/*/*.orig > > .include > > HTH, :) > Juergen Yay! It works fine now and the plugin is initialized and working now! Thanks a lot for that hint but I am a bit curious why FreeBSD still uses "linux" as platform. I think we should look into that and fix it properly - but not today. Now stay tuned for some XBMC Live-TV screenshots! :o) --=20 Bernhard Fr=F6hlich http://www.bluelife.at/ From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 18 15:45:27 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C0512D75 for ; Sun, 18 Aug 2013 15:45:27 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-ob0-x236.google.com (mail-ob0-x236.google.com [IPv6:2607:f8b0:4003:c01::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 83C702D39 for ; Sun, 18 Aug 2013 15:45:27 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id wo10so3987048obc.27 for ; Sun, 18 Aug 2013 08:45:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=U7DOwfsgQZJsWL5HojPwq16lTB3gzKCpJGGYO/SwDK0=; b=YvACqbPH13CWqVOhVmr5r47vxJQKzCnCsVVPvIP+hUVU5IpGL+K4O6iodJoV8jxTSh 4/0kYGF/avRYIfHTPcUtr8eXtChUlhscuj3yao3xbvM24WoMl35x0WyquMzwYrUo/yCU kwTwA5ydCjlobY1WYgtbgtsufp4qU2cZ3k9Yo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=U7DOwfsgQZJsWL5HojPwq16lTB3gzKCpJGGYO/SwDK0=; b=QVgFvMP7z/ggOIcvK61G0kflrdJad+x8ACKoTYYnu5Zec/2cVwGNtTwFfH6lT6gJ5v Y9fm9EwY6EXr6CzAEX+OY1qkXX6GiDntBgDK4ZfMhLyIT1o2X3lhUmiRP9teBRc7PoWJ t3CBoxsIuAnIgpQNSpmCTJQYj81facDSjSQsKX089R+ZgF9jfTKqzsVB2MdMZ11wpBRX aR/yOP04Y5OIvRSiRw8OhsICoakuj4RZoO3tFV/Y7UHPHWt56QrKtGXHzY2lGxhRvzsn hudv+nNoQTfGQWrPZW9hvmhghGNv5Jehf6y4Fz+KL/1Ywg0yfRc8LEoOx3aP5ILLfcPT rNRg== X-Gm-Message-State: ALoCoQkyXapQaHsigfN9V3dxGIYm9mDkiWDiktfTT/xM0H3WZUf71SxH1PgX7T9x+PlXUpyhKP+e MIME-Version: 1.0 X-Received: by 10.60.52.81 with SMTP id r17mr8402589oeo.3.1376840726741; Sun, 18 Aug 2013 08:45:26 -0700 (PDT) Received: by 10.76.95.168 with HTTP; Sun, 18 Aug 2013 08:45:26 -0700 (PDT) X-Originating-IP: [46.74.189.12] In-Reply-To: <20130818131337.GA40218@triton8.kn-bremen.de> References: <20130818131337.GA40218@triton8.kn-bremen.de> Date: Sun, 18 Aug 2013 17:45:26 +0200 Message-ID: Subject: Re: xbmc-pvr-addons: on the way to xbmc pvr From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: Juergen Lock Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: nox@freebsd.org, 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, 18 Aug 2013 15:45:27 -0000 On Sun, Aug 18, 2013 at 3:13 PM, Juergen Lock wrot= e: > On Sat, Aug 17, 2013 at 11:23:50AM +0200, Bernhard Fr=F6hlich wrote: >> Hi guys, > Hi! >> >> now that we have xbmc 12.2 and tvheadend in the portstree the next >> step to a proper PVR solution running on FreeBSD is to add the xbmc >> pvr addons that allow to use various backends like tvheadend. >> >> I have already created a port for the pvr addons that builds and >> installs just fine but for some reason xbmc doesn't like them and >> doesn't even display them in the GUI or any errors in the logfile. >> >> To try out the xbmc-pvr-addons port: >> svn co https://svn.redports.org/decke/multimedia/xbmc-addon-pvr >> >> It should build and install fine but it doesn't seem to have any >> effect on xbmc. You can also build ZIP packages for the addons that >> you can try to install via the Addon manager. >> >> Build zip addons: >> cd xbmc-addon-pvr && make && cd work/xbmc-pvr-addons-12.0-Frodo && make = zip >> >> Install ZIP addons: >> http://wiki.xbmc.org/index.php?title=3DAdd-on_manager#How_to_install_fro= m_a_ZIP_file >> >> With the ZIP files I always get "Add-on does not have the correct >> structure" immediately. No log message that tells why it's >> complaining. >> >> >> There was one error in the logfile with stock multimedia/xbmc 12.2 >> that I fixed on the way: >> ERROR: PVR - CreateTables - failed to get add-ons from the add-on manage= r >> >> I fixed it with the following patch that I also needed for xbmc-pvr-addo= ns. >> http://people.freebsd.org/~decke/patches/xbmc-12.2_1-addon-fix.diff >> >> >> So we are pretty close to a working xbmc pvr because the requires >> parts are all there already. We have an up-to-date xbmc 12.2 in the >> tree. tvheadend with FreeBSD support from latest git is also available >> in multimedia/tvheadend and works fine with webcamd devices. The >> xbmc-pvr-addons port is also there already. All that is left is >> getting that parts working in combination. >> >> I hope someone has an idea what is going on there or how to fix that. :o= ) >> > I finally got around looking at this and turns out the fix is really > simple if you know it: xbmc seems to look for linux > in the addon.xml files not freebsd. I added back freebsd too in > case this gets fixed later tho. (first post-patch REINPLACE_CMD.) > > Index: Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- Makefile (revision 15743) > +++ Makefile (working copy) > @@ -17,7 +17,6 @@ > BUILD_DEPENDS+=3D xbmc:${PORTSDIR}/multimedia/xbmc > RUN_DEPENDS+=3D xbmc:${PORTSDIR}/multimedia/xbmc > > -PATCH_ARGS=3D --suffix "" > USE_GL=3D gl > USE_AUTOTOOLS=3D libtoolize aclocal libtool automake autoconf > MAKE_JOBS_SAFE=3D yes > @@ -29,8 +28,10 @@ > .include > > post-patch: > + @${REINPLACE_CMD} 's|@OS@|freebsd linux|' \ > + ${WRKSRC}/addons/*/addon/addon.xml.in > @${REINPLACE_CMD} 's|-ldl||' \ > ${WRKSRC}/addons/pvr.hts/Makefile.am > - @${RM} ${WRKSRC}/addons/*/*.orig > + @${RM} ${WRKSRC}/addons/*/*/*.orig > > .include > > HTH, :) > Juergen Runtime testing showed that it works very nice now so I fixed a few small things in the port and committed it as multimedia/xbmc-addon-pvr. So far I have only tested the pvr.hts plugin but there are many more to test so feedback is welcome! :o) Thanks a lot! --=20 Bernhard Fr=F6hlich http://www.bluelife.at/ From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 18 15:50:44 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 50A72E28; Sun, 18 Aug 2013 15:50:44 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id C94DA2D79; Sun, 18 Aug 2013 15:50:43 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 8CF011E007B6; Sun, 18 Aug 2013 17:50:42 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.5/8.14.4) with ESMTP id r7IFn7tu059948; Sun, 18 Aug 2013 17:49:07 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.5/8.14.3/Submit) id r7IFn7bZ059947; Sun, 18 Aug 2013 17:49:07 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 18 Aug 2013 17:49:07 +0200 To: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= Subject: Re: xbmc-pvr-addons: on the way to xbmc pvr Message-ID: <20130818154907.GA59932@triton8.kn-bremen.de> References: <20130818131337.GA40218@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: nox@freebsd.org, Juergen Lock , 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, 18 Aug 2013 15:50:44 -0000 On Sun, Aug 18, 2013 at 04:12:39PM +0200, Bernhard Fröhlich wrote: > On Sun, Aug 18, 2013 at 3:13 PM, Juergen Lock wrote: > > On Sat, Aug 17, 2013 at 11:23:50AM +0200, Bernhard Fröhlich wrote: > >> Hi guys, > > Hi! > >> > >> now that we have xbmc 12.2 and tvheadend in the portstree the next > >> step to a proper PVR solution running on FreeBSD is to add the xbmc > >> pvr addons that allow to use various backends like tvheadend. > >> > >> I have already created a port for the pvr addons that builds and > >> installs just fine but for some reason xbmc doesn't like them and > >> doesn't even display them in the GUI or any errors in the logfile. > >> > >> To try out the xbmc-pvr-addons port: > >> svn co https://svn.redports.org/decke/multimedia/xbmc-addon-pvr > >> > >> It should build and install fine but it doesn't seem to have any > >> effect on xbmc. You can also build ZIP packages for the addons that > >> you can try to install via the Addon manager. > >> > >> Build zip addons: > >> cd xbmc-addon-pvr && make && cd work/xbmc-pvr-addons-12.0-Frodo && make zip > >> > >> Install ZIP addons: > >> http://wiki.xbmc.org/index.php?title=Add-on_manager#How_to_install_from_a_ZIP_file > >> > >> With the ZIP files I always get "Add-on does not have the correct > >> structure" immediately. No log message that tells why it's > >> complaining. > >> > >> > >> There was one error in the logfile with stock multimedia/xbmc 12.2 > >> that I fixed on the way: > >> ERROR: PVR - CreateTables - failed to get add-ons from the add-on manager > >> > >> I fixed it with the following patch that I also needed for xbmc-pvr-addons. > >> http://people.freebsd.org/~decke/patches/xbmc-12.2_1-addon-fix.diff > >> > >> > >> So we are pretty close to a working xbmc pvr because the requires > >> parts are all there already. We have an up-to-date xbmc 12.2 in the > >> tree. tvheadend with FreeBSD support from latest git is also available > >> in multimedia/tvheadend and works fine with webcamd devices. The > >> xbmc-pvr-addons port is also there already. All that is left is > >> getting that parts working in combination. > >> > >> I hope someone has an idea what is going on there or how to fix that. :o) > >> > > I finally got around looking at this and turns out the fix is really > > simple if you know it: xbmc seems to look for linux > > in the addon.xml files not freebsd. I added back freebsd too in > > case this gets fixed later tho. (first post-patch REINPLACE_CMD.) > > > > Index: Makefile > > =================================================================== > > --- Makefile (revision 15743) > > +++ Makefile (working copy) > > @@ -17,7 +17,6 @@ > > BUILD_DEPENDS+= xbmc:${PORTSDIR}/multimedia/xbmc > > RUN_DEPENDS+= xbmc:${PORTSDIR}/multimedia/xbmc > > > > -PATCH_ARGS= --suffix "" > > USE_GL= gl > > USE_AUTOTOOLS= libtoolize aclocal libtool automake autoconf > > MAKE_JOBS_SAFE= yes > > @@ -29,8 +28,10 @@ > > .include > > > > post-patch: > > + @${REINPLACE_CMD} 's|@OS@|freebsd linux|' \ > > + ${WRKSRC}/addons/*/addon/addon.xml.in > > @${REINPLACE_CMD} 's|-ldl||' \ > > ${WRKSRC}/addons/pvr.hts/Makefile.am > > - @${RM} ${WRKSRC}/addons/*/*.orig > > + @${RM} ${WRKSRC}/addons/*/*/*.orig > > > > .include > > > > HTH, :) > > Juergen > > Yay! It works fine now and the plugin is initialized and working now! > Thanks a lot for that hint but I am a bit curious why FreeBSD still > uses "linux" as platform. I think we should look into that and fix it > properly - but not today. > > Now stay tuned for some XBMC Live-TV screenshots! :o) > > -- > Bernhard Fröhlich > http://www.bluelife.at/ > I now also updated the VDR vnsiserver plugin from your distfile: svn co https://svn.redports.org/nox/multimedia/vdr-plugin-vnsiserver Seems to work as well, except that I got an nvidia panic once but that box is also running an older head checkout so possibly expected... Thanx, :) Juergen From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 18 16:22:23 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D09B05EA; Sun, 18 Aug 2013 16:22:23 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 5522A2ECD; Sun, 18 Aug 2013 16:22:22 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 2A1EA1E00240; Sun, 18 Aug 2013 18:22:22 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.5/8.14.4) with ESMTP id r7IGLtSB064150; Sun, 18 Aug 2013 18:21:55 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.5/8.14.3/Submit) id r7IGLtVo064149; Sun, 18 Aug 2013 18:21:55 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 18 Aug 2013 18:21:54 +0200 To: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= Subject: Re: xbmc-pvr-addons: on the way to xbmc pvr Message-ID: <20130818162154.GA64130@triton8.kn-bremen.de> References: <20130818131337.GA40218@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: nox@freebsd.org, Juergen Lock , 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, 18 Aug 2013 16:22:23 -0000 On Sun, Aug 18, 2013 at 05:45:26PM +0200, Bernhard Fröhlich wrote: > On Sun, Aug 18, 2013 at 3:13 PM, Juergen Lock wrote: > > On Sat, Aug 17, 2013 at 11:23:50AM +0200, Bernhard Fröhlich wrote: > >> Hi guys, > > Hi! > >> > >> now that we have xbmc 12.2 and tvheadend in the portstree the next > >> step to a proper PVR solution running on FreeBSD is to add the xbmc > >> pvr addons that allow to use various backends like tvheadend. > >> > >> I have already created a port for the pvr addons that builds and > >> installs just fine but for some reason xbmc doesn't like them and > >> doesn't even display them in the GUI or any errors in the logfile. > >> > >> To try out the xbmc-pvr-addons port: > >> svn co https://svn.redports.org/decke/multimedia/xbmc-addon-pvr > >> > >> It should build and install fine but it doesn't seem to have any > >> effect on xbmc. You can also build ZIP packages for the addons that > >> you can try to install via the Addon manager. > >> > >> Build zip addons: > >> cd xbmc-addon-pvr && make && cd work/xbmc-pvr-addons-12.0-Frodo && make zip > >> > >> Install ZIP addons: > >> http://wiki.xbmc.org/index.php?title=Add-on_manager#How_to_install_from_a_ZIP_file > >> > >> With the ZIP files I always get "Add-on does not have the correct > >> structure" immediately. No log message that tells why it's > >> complaining. > >> > >> > >> There was one error in the logfile with stock multimedia/xbmc 12.2 > >> that I fixed on the way: > >> ERROR: PVR - CreateTables - failed to get add-ons from the add-on manager > >> > >> I fixed it with the following patch that I also needed for xbmc-pvr-addons. > >> http://people.freebsd.org/~decke/patches/xbmc-12.2_1-addon-fix.diff > >> > >> > >> So we are pretty close to a working xbmc pvr because the requires > >> parts are all there already. We have an up-to-date xbmc 12.2 in the > >> tree. tvheadend with FreeBSD support from latest git is also available > >> in multimedia/tvheadend and works fine with webcamd devices. The > >> xbmc-pvr-addons port is also there already. All that is left is > >> getting that parts working in combination. > >> > >> I hope someone has an idea what is going on there or how to fix that. :o) > >> > > I finally got around looking at this and turns out the fix is really > > simple if you know it: xbmc seems to look for linux > > in the addon.xml files not freebsd. I added back freebsd too in > > case this gets fixed later tho. (first post-patch REINPLACE_CMD.) > > > > Index: Makefile > > =================================================================== > > --- Makefile (revision 15743) > > +++ Makefile (working copy) > > @@ -17,7 +17,6 @@ > > BUILD_DEPENDS+= xbmc:${PORTSDIR}/multimedia/xbmc > > RUN_DEPENDS+= xbmc:${PORTSDIR}/multimedia/xbmc > > > > -PATCH_ARGS= --suffix "" > > USE_GL= gl > > USE_AUTOTOOLS= libtoolize aclocal libtool automake autoconf > > MAKE_JOBS_SAFE= yes > > @@ -29,8 +28,10 @@ > > .include > > > > post-patch: > > + @${REINPLACE_CMD} 's|@OS@|freebsd linux|' \ > > + ${WRKSRC}/addons/*/addon/addon.xml.in > > @${REINPLACE_CMD} 's|-ldl||' \ > > ${WRKSRC}/addons/pvr.hts/Makefile.am > > - @${RM} ${WRKSRC}/addons/*/*.orig > > + @${RM} ${WRKSRC}/addons/*/*/*.orig > > > > .include > > > > HTH, :) > > Juergen > > Runtime testing showed that it works very nice now so I fixed a few > small things in the port and committed it as multimedia/xbmc-addon-pvr. > > So far I have only tested the pvr.hts plugin but there are many more to > test so feedback is welcome! :o) > > Thanks a lot! > And I just committed the updated multimedia/vdr-plugin-vnsiserver to work with the pvr.vdr.vnsi addon from your port. Thanx to you for working on this also, :) Juergen From owner-freebsd-multimedia@FreeBSD.ORG Mon Aug 19 10:52:41 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E396C862 for ; Mon, 19 Aug 2013 10:52:41 +0000 (UTC) (envelope-from portscout@FreeBSD.org) Received: from portscout.freebsd.org (unknown [IPv6:2001:1900:2254:206a::50:123]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC53B23E7 for ; Mon, 19 Aug 2013 10:52:41 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JAqfGi024252 for ; Mon, 19 Aug 2013 10:52:41 GMT (envelope-from portscout@portscout.freebsd.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.7/8.14.6/Submit) id r7JAqfLE024248; Mon, 19 Aug 2013 10:52:41 GMT (envelope-from portscout) Message-Id: <201308191052.r7JAqfLE024248@portscout.freebsd.org> Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Mon, 19 Aug 2013 10:52:41 +0000 From: 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: Mon, 19 Aug 2013 10:52:42 -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 ------------------------------------------------+-----------------+------------ audio/denemo | 1.0.4 | 1.0.6 ------------------------------------------------+-----------------+------------ 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@FreeBSD.org Thanks. From owner-freebsd-multimedia@FreeBSD.ORG Mon Aug 19 11:06:47 2013 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 54CB9D9D for ; Mon, 19 Aug 2013 11:06:47 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 337EF251A for ; Mon, 19 Aug 2013 11:06:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JB6lv0006083 for ; Mon, 19 Aug 2013 11:06:47 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7JB6k6C006081 for freebsd-multimedia@FreeBSD.org; Mon, 19 Aug 2013 11:06:46 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 19 Aug 2013 11:06:46 GMT Message-Id: <201308191106.r7JB6k6C006081@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, 19 Aug 2013 11:06:47 -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/181213 multimedia [patch] audio/twolame: add ftp/curl dependency o ports/181003 multimedia multimedia/gstreamer not build with clang o kern/180966 multimedia [snd_envy24] recording broken o ports/180906 multimedia [PATCH] multimedia/gpac-* update to 0.5.0 o ports/179942 multimedia [patch] multimedia/dvdstyler: uses wrong ffmpeg when m o ports/179799 multimedia Fix multimedia/mjpegtools on powerpc o ports/179701 multimedia [PATCH] multimedia/gstreamer: Add NLS, trim pkg-plist o ports/179121 multimedia [PATCH] graphics/exiftags: Convert to OptionsNG o kern/178671 multimedia [snd_hda] snd_hda stops working as soon as X starts o ports/178273 multimedia multimedia/gstreamer-plugins: It's hava no package of o ports/177532 multimedia multimedia/gstreamer-plugins-* ports missing dependenc o ports/177281 multimedia multimedia/avidemux2 does not compile o ports/175940 multimedia multimedia/gstreamer-plugins-good add missing dependen 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/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/174287 multimedia multimedia/gstreamer-plugins-good fails to compile wit 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 ports/170517 multimedia [patch] Correct audio/jack Dependency Declaration o ports/170032 multimedia Some ports not bumped after libogg update 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 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 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 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 96 problems total. From owner-freebsd-multimedia@FreeBSD.ORG Sat Aug 24 16:30:09 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]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2F850927; Sat, 24 Aug 2013 16:30:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 054AA26D2; Sat, 24 Aug 2013 16:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7OGU845020291; Sat, 24 Aug 2013 16:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7OGU8bI020290; Sat, 24 Aug 2013 16:30:08 GMT (envelope-from edwin) Date: Sat, 24 Aug 2013 16:30:08 GMT Message-Id: <201308241630.r7OGU8bI020290@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/181505: [ports/multimedia/dirac] Fix build error by CXX=clang 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: Sat, 24 Aug 2013 16:30:09 -0000 Synopsis: [ports/multimedia/dirac] Fix build error by CXX=clang Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sat Aug 24 16:30:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=181505