From swell.k@gmail.com  Fri Jan  7 17:29:59 2011
Return-Path: <swell.k@gmail.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id E61841065672
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  7 Jan 2011 17:29:59 +0000 (UTC)
	(envelope-from swell.k@gmail.com)
Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54])
	by mx1.freebsd.org (Postfix) with ESMTP id 7ABFE8FC0A
	for <FreeBSD-gnats-submit@freebsd.org>; Fri,  7 Jan 2011 17:29:59 +0000 (UTC)
Received: by fxm16 with SMTP id 16so17106633fxm.13
        for <FreeBSD-gnats-submit@freebsd.org>; Fri, 07 Jan 2011 09:29:58 -0800 (PST)
Received: by 10.223.79.68 with SMTP id o4mr309957fak.0.1294421398368;
        Fri, 07 Jan 2011 09:29:58 -0800 (PST)
Received: from localhost (narf.dsw2k3.info [195.71.226.87])
        by mx.google.com with ESMTPS id n3sm6218855faa.29.2011.01.07.09.29.56
        (version=SSLv3 cipher=RC4-MD5);
        Fri, 07 Jan 2011 09:29:57 -0800 (PST)
Message-Id: <86fwt4vczg.fsf@gmail.com>
Date: Fri, 07 Jan 2011 20:29:39 +0300
From: Anonymous <swell.k@gmail.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: [patch] multimedia/xbmc: add VAAPI option

>Number:         153767
>Category:       ports
>Synopsis:       [patch] multimedia/xbmc: add VAAPI option
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    decke
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jan 07 17:30:12 UTC 2011
>Closed-Date:    Thu Mar 10 20:23:18 UTC 2011
>Last-Modified:  Thu Mar 10 20:30:15 UTC 2011
>Originator:     Anonymous
>Release:        FreeBSD 9.0-CURRENT amd64
>Organization:
>Environment:
depends on ports/153725
>Description:
Track libva dependency as use_vaapi=auto by default.

However, this port already supports VDPAU and there is no port
for another va driver besides vdpau-video.
>How-To-Repeat:
>Fix:
Beware, neither plist nor the feature itself was tested.

--- a.diff begins here ---
Index: multimedia/xbmc/Makefile
===================================================================
RCS file: /a/.cvsup/ports/multimedia/xbmc/Makefile,v
retrieving revision 1.1
diff -u -p -r1.1 Makefile
--- multimedia/xbmc/Makefile	29 Dec 2010 20:39:31 -0000	1.1
+++ multimedia/xbmc/Makefile	7 Jan 2011 17:19:40 -0000
@@ -83,6 +83,7 @@ OPTIONS=	AVAHI		"Enable Avahi support"		
 		NONFREE		"Enable non-free components (rar, ccx, ffmpeg)"	off \
 		PULSE		"Enable PulseAudio support"		off \
 		RTMP		"RTMP support via librtmp"		off \
+		VAAPI		"Enable VAAPI support"			off \
 		VDPAU		"Enable VDPAU support"			off \
 		WEBSERVER	"Build Internal Webserver"		off
 
@@ -157,6 +158,13 @@ LIB_DEPENDS+=	rtmp.0:${PORTSDIR}/multime
 CONFIGURE_ARGS+=	--disable-rtmp
 .endif
 
+.if defined(WITH_VAAPI)
+LIB_DEPENDS+=	va.1:${PORTSDIR}/multimedia/libva
+CONFIGURE_ARGS+=	--enable-vaapi
+.else
+CONFIGURE_ARGS+=	--disable-vaapi
+.endif
+
 .if defined(WITH_VDPAU)
 LIB_DEPENDS+=	vdpau.1:${PORTSDIR}/multimedia/libvdpau
 CONFIGURE_ARGS+=	--enable-vdpau
--- a.diff ends here ---
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Fri Jan 7 17:30:21 UTC 2011 
Responsible-Changed-Why:  
pgollucci@ wants his PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=153767 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Fri Jan 7 17:30:30 UTC 2011 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=153767 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: mickael.maillot@gmail.com
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/153767: [patch] multimedia/xbmc: add VAAPI option
Date: Fri, 7 Jan 2011 17:30:26 UT

 Maintainer of multimedia/xbmc,
 
 Please note that PR ports/153767 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/153767
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= <mickael.maillot@gmail.com>
To: bug-followup@freebsd.org, swell.k@gmail.com
Cc:  
Subject: Re: ports/153767: [patch] multimedia/xbmc: add VAAPI option
Date: Sat, 8 Jan 2011 13:20:18 +0100

 it's good for me, compile and run fine.
 depends on ports/153725 (libva)

From: Bernhard Froehlich <decke@FreeBSD.org>
To: <bug-followup@FreeBSD.org>, <swell.k@gmail.com>, <pgollucci@FreeBSD.org>
Cc:  
Subject: Re: ports/153767: [patch] multimedia/xbmc: add VAAPI option
Date: Wed, 09 Mar 2011 08:26:01 +0100

 Any objections if I take over this PR? The dependency multimedia/libva
 is committed already so i think there are no blockers anymore.
 
 -- 
 Bernhard Froehlich
 http://www.bluelife.at/
Responsible-Changed-From-To: pgollucci->decke 
Responsible-Changed-By: decke 
Responsible-Changed-When: Thu Mar 10 20:16:48 UTC 2011 
Responsible-Changed-Why:  
Take over PR because of timeout. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=153767 
State-Changed-From-To: feedback->closed 
State-Changed-By: decke 
State-Changed-When: Thu Mar 10 20:23:18 UTC 2011 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=153767 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/153767: commit references a PR
Date: Thu, 10 Mar 2011 20:21:55 +0000 (UTC)

 decke       2011-03-10 20:21:47 UTC
 
   FreeBSD ports repository
 
   Modified files:
     multimedia/xbmc      Makefile 
   Log:
   - Add VAAPI option
   
   PR:             ports/153767
   Submitted by:   Anonymous <swell.k@gmail.com>
   Approved by:    Mickael Maillot <mickael.maillot@gmail.com> (maintainer)
   
   Revision  Changes    Path
   1.7       +8 -0      ports/multimedia/xbmc/Makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
