From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4EF94138B37 for ; Sat, 1 Feb 2014 15:24:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB3EFE0A5A; Sat, 1 Feb 2014 15:24:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42B57E0A5A for ; Sat, 1 Feb 2014 15:24:56 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4790E33F8BE for ; Sat, 1 Feb 2014 15:24:55 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2305) id 0FD462004C; Sat, 1 Feb 2014 15:24:53 +0000 (UTC) From: "Ian Stakenvicius (axs)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, axs@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/xvba-video: xvba-video-9999.ebuild xvba-video-0.8.0-r2.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: xvba-video-9999.ebuild xvba-video-0.8.0-r2.ebuild ChangeLog X-VCS-Directories: x11-libs/xvba-video X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140201152454.0FD462004C@flycatcher.gentoo.org> Date: Sat, 1 Feb 2014 15:24:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3f87fdef-d301-49c5-a300-26418cabcc3f X-Archives-Hash: e4eb14829eb2b9ce92740bd6a7df87d4 axs 14/02/01 15:24:53 Modified: xvba-video-9999.ebuild ChangeLog Added: xvba-video-0.8.0-r2.ebuild Log: revbump ebuilds to support multilib-build, changes reviewed by aballier (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED) Revision Changes Path 1.8 x11-libs/xvba-video/xvba-video-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?r1=1.7&r2=1.8 Index: xvba-video-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- xvba-video-9999.ebuild 5 Sep 2013 19:44:48 -0000 1.7 +++ xvba-video-9999.ebuild 1 Feb 2014 15:24:53 -0000 1.8 @@ -1,13 +1,14 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v 1.7 2013/09/05 19:44:48 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v 1.8 2014/02/01 15:24:53 axs Exp $ EAPI=5 EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/xvba-driver" [[ ${PV} = 9999 ]] && inherit git-2 PYTHON_COMPAT=( python{2_6,2_7} ) -inherit eutils autotools python-any-r1 +AUTOTOOLS_AUTORECONF="yes" +inherit eutils autotools-multilib python-any-r1 DESCRIPTION="XVBA Backend for Video Acceleration (VA) API" HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi" @@ -21,35 +22,27 @@ KEYWORDS="~amd64 ~x86" IUSE="debug opengl" -RDEPEND=" - x11-libs/libva[X(+),opengl?] - x11-libs/libvdpau - x11-drivers/ati-drivers -" +RDEPEND="x11-libs/libva[X(+),opengl?,${MULTILIB_USEDEP}] + x11-libs/libvdpau[${MULTILIB_USEDEP}] + x11-drivers/ati-drivers" DEPEND="${DEPEND} ${PYTHON_DEPS} virtual/pkgconfig" DOCS=( NEWS README AUTHORS ) +PATCHES=( + "${FILESDIR}"/${PN}-fix-mesa-gl.h.patch + "${FILESDIR}"/${PN}-fix-out-of-source-builds.patch +) pkg_setup() { python-any-r1_pkg_setup } -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-fix-mesa-gl.h.patch - - eautoreconf -} - -src_configure() { - econf \ - $(use_enable debug) \ +multilib_src_configure() { + local myeconfargs=( + $(use_enable debug) $(use_enable opengl glx) -} - -src_install() { - default - prune_libtool_files --all + ) + autotools-utils_src_configure } 1.16 x11-libs/xvba-video/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?r1=1.15&r2=1.16 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 5 Sep 2013 19:44:48 -0000 1.15 +++ ChangeLog 1 Feb 2014 15:24:53 -0000 1.16 @@ -1,6 +1,13 @@ # ChangeLog for x11-libs/xvba-video -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v 1.15 2013/09/05 19:44:48 mgorny Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v 1.16 2014/02/01 15:24:53 axs Exp $ + +*xvba-video-0.8.0-r2 (01 Feb 2014) + + 01 Feb 2014; Ian Stakenvicius (_AxS_) + +files/xvba-video-fix-out-of-source-builds.patch, +xvba-video-0.8.0-r2.ebuild, + xvba-video-9999.ebuild: + revbump ebuilds to support multilib-build, changes reviewed by aballier 05 Sep 2013; Michał Górny xvba-video-0.8.0-r1.ebuild, xvba-video-9999.ebuild: 1.1 x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild?rev=1.1&content-type=text/plain Index: xvba-video-0.8.0-r2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild,v 1.1 2014/02/01 15:24:53 axs Exp $ EAPI=5 EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/xvba-driver" [[ ${PV} = 9999 ]] && inherit git-2 PYTHON_COMPAT=( python{2_6,2_7} ) AUTOTOOLS_AUTORECONF="yes" inherit eutils autotools-multilib python-any-r1 DESCRIPTION="XVBA Backend for Video Acceleration (VA) API" HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi" SRC_URI="http://dev.gentooexperimental.org/~scarabeus/xvba-driver-${PV}.tar.bz2" # No source release yet, the src_uri is theoretical at best right now #[[ ${PV} = 9999 ]] || SRC_URI="http://www.freedesktop.org/software/vaapi/releases/${PN}/${P}.tar.bz2" LICENSE="GPL-2+ MIT" SLOT="0" # newline is needed for broken ekeyword [[ ${PV} = 9999 ]] || \ KEYWORDS="~amd64 ~x86" IUSE="debug opengl" RDEPEND="x11-libs/libva[X(+),opengl?,${MULTILIB_USEDEP}] x11-libs/libvdpau[${MULTILIB_USEDEP}] x11-drivers/ati-drivers" DEPEND="${DEPEND} ${PYTHON_DEPS} virtual/pkgconfig" DOCS=( NEWS README AUTHORS ) PATCHES=( "${FILESDIR}"/${PN}-fix-mesa-gl.h.patch "${FILESDIR}"/${PN}-fix-out-of-source-builds.patch ) S="${WORKDIR}/xvba-driver-${PV}" pkg_setup() { python-any-r1_pkg_setup } multilib_src_configure() { local myeconfargs=( $(use_enable debug) $(use_enable opengl glx) ) autotools-utils_src_configure }