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.2.2.ebuild
Date: Mon, 30 Dec 2013 10:06:46
Message-Id: 20131230100641.8ACD52004C@flycatcher.gentoo.org
1 aballier 13/12/30 10:06:41
2
3 Modified: ChangeLog
4 Added: libva-intel-driver-1.2.2.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.25 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.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 12 Oct 2013 07:52:25 -0000 1.24
24 +++ ChangeLog 30 Dec 2013 10:06:41 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/libva-intel-driver
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v 1.24 2013/10/12 07:52:25 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva-intel-driver/ChangeLog,v 1.25 2013/12/30 10:06:41 aballier Exp $
30 +
31 +*libva-intel-driver-1.2.2 (30 Dec 2013)
32 +
33 + 30 Dec 2013; Alexis Ballier <aballier@g.o>
34 + +libva-intel-driver-1.2.2.ebuild:
35 + version bump
36
37 *libva-intel-driver-1.2.1 (12 Oct 2013)
38
39
40
41
42 1.1 x11-libs/libva-intel-driver/libva-intel-driver-1.2.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libva-intel-driver/libva-intel-driver-1.2.2.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.2.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libva-intel-driver-1.2.2.ebuild
48 ===================================================================
49 # Copyright 1999-2013 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.2.2.ebuild,v 1.1 2013/12/30 10:06:41 aballier Exp $
52
53 EAPI="3"
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 inherit autotools ${SCM} multilib
63
64 DESCRIPTION="HW video decode support for Intel integrated graphics"
65 HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
66 if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
67 SRC_URI=""
68 S="${WORKDIR}/${PN}"
69 else
70 SRC_URI="http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${P}.tar.bz2"
71 fi
72
73 LICENSE="MIT"
74 SLOT="0"
75 if [ "${PV%9999}" = "${PV}" ] ; then
76 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
77 else
78 KEYWORDS=""
79 fi
80 IUSE="+drm wayland X"
81
82 RDEPEND=">=x11-libs/libva-1.2.0[X?,wayland?,drm?]
83 !<x11-libs/libva-1.0.15[video_cards_intel]
84 >=x11-libs/libdrm-2.4.45[video_cards_intel]
85 wayland? ( media-libs/mesa[egl] >=dev-libs/wayland-1 )"
86
87 DEPEND="${RDEPEND}
88 virtual/pkgconfig"
89
90 src_prepare() {
91 eautoreconf
92 }
93
94 src_configure() {
95 econf \
96 --disable-silent-rules \
97 $(use_enable drm) \
98 $(use_enable wayland) \
99 $(use_enable X x11)
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die
104 dodoc AUTHORS NEWS README || die
105 find "${D}" -name '*.la' -delete
106 }