Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libva-intel-driver: ChangeLog libva-intel-driver-1.6.0.ebuild
Date: Mon, 06 Jul 2015 14:39:25
Message-Id: 20150706143919.25FB6750@oystercatcher.gentoo.org
1 aballier 15/07/06 14:39:19
2
3 Modified: ChangeLog
4 Added: libva-intel-driver-1.6.0.ebuild
5 Log:
6 version bump, bug #553902
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.42 x11-libs/libva-intel-driver/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 24 Jun 2015 19:48:30 -0000 1.41
24 +++ ChangeLog 6 Jul 2015 14:39:19 -0000 1.42
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/libva-intel-driver
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v 1.41 2015/06/24 19:48:30 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v 1.42 2015/07/06 14:39:19 aballier Exp $
30 +
31 +*libva-intel-driver-1.6.0 (06 Jul 2015)
32 +
33 + 06 Jul 2015; Alexis Ballier <aballier@g.o>
34 + +libva-intel-driver-1.6.0.ebuild:
35 + version bump, bug #553902
36
37 24 Jun 2015; Pacho Ramos <pacho@g.o>
38 +files/libva-intel-driver-1.5.1-wayland-automagic.patch,
39
40
41
42 1.1 x11-libs/libva-intel-driver/libva-intel-driver-1.6.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/libva-intel-driver-1.6.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/libva-intel-driver-1.6.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libva-intel-driver-1.6.0.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/libva-intel-driver-1.6.0.ebuild,v 1.1 2015/07/06 14:39:19 aballier Exp $
52
53 EAPI=5
54
55 SCM=""
56 if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
57 SCM=git-2
58 EGIT_BRANCH=master
59 EGIT_REPO_URI="git://anongit.freedesktop.org/git/vaapi/intel-driver"
60 fi
61
62 AUTOTOOLS_AUTORECONF="yes"
63 inherit autotools-multilib ${SCM}
64
65 DESCRIPTION="HW video decode support for Intel integrated graphics"
66 HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
67 if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
68 SRC_URI=""
69 S="${WORKDIR}/${PN}"
70 else
71 SRC_URI="http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${P}.tar.bz2"
72 fi
73
74 LICENSE="MIT"
75 SLOT="0"
76 if [ "${PV%9999}" = "${PV}" ] ; then
77 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
78 else
79 KEYWORDS=""
80 fi
81 IUSE="+drm wayland X"
82
83 RDEPEND=">=x11-libs/libva-1.4[X?,wayland?,drm?,${MULTILIB_USEDEP}]
84 !<x11-libs/libva-1.0.15[video_cards_intel]
85 >=x11-libs/libdrm-2.4.46[video_cards_intel,${MULTILIB_USEDEP}]
86 wayland? ( >=media-libs/mesa-9.1.6[egl,${MULTILIB_USEDEP}] >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] )"
87
88 DEPEND="${RDEPEND}
89 virtual/pkgconfig"
90
91 PATCHES=(
92 # Fix automagic depend, bug #529388
93 # https://bugs.freedesktop.org/show_bug.cgi?id=79478
94 "${FILESDIR}"/${PN}-1.5.1-wayland-automagic.patch
95 )
96
97 DOCS=( AUTHORS NEWS README )
98
99 src_prepare() {
100 sed -e 's/intel-gen4asm/\0diSaBlEd/g' -i configure.ac || die
101 autotools-multilib_src_prepare
102 }
103
104 multilib_src_configure() {
105 local myeconfargs=(
106 $(use_enable drm)
107 $(use_enable wayland)
108 $(use_enable X x11)
109 )
110 autotools-utils_src_configure
111 }