Gentoo Archives: gentoo-commits

From: "Matt Turner (mattst88)" <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libdrm: libdrm-2.4.62.ebuild ChangeLog
Date: Thu, 02 Jul 2015 00:32:32
Message-Id: 20150702003221.8BB0274B@oystercatcher.gentoo.org
1 mattst88 15/07/02 00:32:21
2
3 Modified: ChangeLog
4 Added: libdrm-2.4.62.ebuild
5 Log:
6 Version bump to 2.4.62. Makes progress on bug #544596.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
9
10 Revision Changes Path
11 1.288 x11-libs/libdrm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/ChangeLog?rev=1.288&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/ChangeLog?rev=1.288&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/ChangeLog?r1=1.287&r2=1.288
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v
20 retrieving revision 1.287
21 retrieving revision 1.288
22 diff -u -r1.287 -r1.288
23 --- ChangeLog 24 Mar 2015 18:32:39 -0000 1.287
24 +++ ChangeLog 2 Jul 2015 00:32:21 -0000 1.288
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/libdrm
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.287 2015/03/24 18:32:39 chithanh Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.288 2015/07/02 00:32:21 mattst88 Exp $
30 +
31 +*libdrm-2.4.62 (02 Jul 2015)
32 +
33 + 02 Jul 2015; Matt Turner <mattst88@g.o> +libdrm-2.4.62.ebuild:
34 + Version bump to 2.4.62. Makes progress on bug #544596.
35
36 *libdrm-2.4.60 (24 Mar 2015)
37
38
39
40
41 1.1 x11-libs/libdrm/libdrm-2.4.62.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/libdrm-2.4.62.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/libdrm-2.4.62.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libdrm-2.4.62.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/libdrm-2.4.62.ebuild,v 1.1 2015/07/02 00:32:21 mattst88 Exp $
51
52 EAPI=5
53
54 XORG_MULTILIB=yes
55 inherit xorg-2
56
57 DESCRIPTION="X.Org libdrm library"
58 HOMEPAGE="http://dri.freedesktop.org/"
59 if [[ ${PV} = 9999* ]]; then
60 EGIT_REPO_URI="git://anongit.freedesktop.org/git/mesa/drm"
61 else
62 SRC_URI="http://dri.freedesktop.org/${PN}/${P}.tar.bz2"
63 fi
64
65 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux"
66 VIDEO_CARDS="exynos freedreno intel nouveau omap radeon tegra vmware"
67 for card in ${VIDEO_CARDS}; do
68 IUSE_VIDEO_CARDS+=" video_cards_${card}"
69 done
70
71 IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
72 RESTRICT="test" # see bug #236845
73
74 RDEPEND=">=dev-libs/libpthread-stubs-0.3-r1:=[${MULTILIB_USEDEP}]
75 video_cards_intel? ( >=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )
76 abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
77 DEPEND="${RDEPEND}
78 valgrind? ( dev-util/valgrind )"
79
80 src_prepare() {
81 if [[ ${PV} = 9999* ]]; then
82 # tests are restricted, no point in building them
83 sed -ie 's/tests //' "${S}"/Makefile.am
84 fi
85 xorg-2_src_prepare
86 }
87
88 src_configure() {
89 XORG_CONFIGURE_OPTIONS=(
90 # Udev is only used by tests now.
91 --disable-udev
92 --disable-cairo-tests
93 $(use_enable video_cards_exynos exynos-experimental-api)
94 $(use_enable video_cards_freedreno freedreno)
95 $(use_enable video_cards_intel intel)
96 $(use_enable video_cards_nouveau nouveau)
97 $(use_enable video_cards_omap omap-experimental-api)
98 $(use_enable video_cards_radeon radeon)
99 $(use_enable video_cards_tegra tegra-experimental-api)
100 $(use_enable video_cards_vmware vmwgfx)
101 $(use_enable libkms)
102 # valgrind installs its .pc file to the pkgconfig for the primary arch
103 --enable-valgrind=$(usex valgrind auto no)
104 )
105
106 xorg-2_src_configure
107 }