Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libdrm: libdrm-2.4.43.ebuild ChangeLog
Date: Wed, 27 Mar 2013 10:40:59
Message-Id: 20130327104055.0AFBF2171D@flycatcher.gentoo.org
1 chithanh 13/03/27 10:40:54
2
3 Modified: ChangeLog
4 Added: libdrm-2.4.43.ebuild
5 Log:
6 Version bump, drop exynos and freedreno support as they are broken in this release.
7
8 (Portage version: 2.1.11.55/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.219 x11-libs/libdrm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/ChangeLog?rev=1.219&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/ChangeLog?rev=1.219&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/ChangeLog?r1=1.218&r2=1.219
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v
20 retrieving revision 1.218
21 retrieving revision 1.219
22 diff -u -r1.218 -r1.219
23 --- ChangeLog 27 Feb 2013 05:40:26 -0000 1.218
24 +++ ChangeLog 27 Mar 2013 10:40:54 -0000 1.219
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-libs/libdrm
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.218 2013/02/27 05:40:26 zmedico Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.219 2013/03/27 10:40:54 chithanh Exp $
30 +
31 +*libdrm-2.4.43 (27 Mar 2013)
32 +
33 + 27 Mar 2013; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +libdrm-2.4.43.ebuild:
35 + Version bump, drop exynos and freedreno support as they are broken in this
36 + release.
37
38 27 Feb 2013; Zac Medico <zmedico@g.o> libdrm-2.4.42.ebuild:
39 Add ~arm-linux keyword.
40
41
42
43 1.1 x11-libs/libdrm/libdrm-2.4.43.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/libdrm-2.4.43.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libdrm/libdrm-2.4.43.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libdrm-2.4.43.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/libdrm-2.4.43.ebuild,v 1.1 2013/03/27 10:40:54 chithanh Exp $
53
54 EAPI=5
55 inherit xorg-2
56
57 EGIT_REPO_URI="git://anongit.freedesktop.org/git/mesa/drm"
58
59 DESCRIPTION="X.Org libdrm library"
60 HOMEPAGE="http://dri.freedesktop.org/"
61 if [[ ${PV} = 9999* ]]; then
62 SRC_URI=""
63 else
64 SRC_URI="http://dri.freedesktop.org/${PN}/${P}.tar.bz2"
65 fi
66
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
68 VIDEO_CARDS="intel nouveau omap radeon vmware"
69 for card in ${VIDEO_CARDS}; do
70 IUSE_VIDEO_CARDS+=" video_cards_${card}"
71 done
72
73 IUSE="${IUSE_VIDEO_CARDS} libkms"
74 RESTRICT="test" # see bug #236845
75
76 RDEPEND="dev-libs/libpthread-stubs
77 video_cards_intel? ( >=x11-libs/libpciaccess-0.10 )"
78 DEPEND="${RDEPEND}"
79
80 PATCHES=(
81 "${FILESDIR}"/${PN}-2.4.28-solaris.patch
82 )
83
84 src_prepare() {
85 if [[ ${PV} = 9999* ]]; then
86 # tests are restricted, no point in building them
87 sed -ie 's/tests //' "${S}"/Makefile.am
88 fi
89 xorg-2_src_prepare
90 }
91
92 src_configure() {
93 XORG_CONFIGURE_OPTIONS=(
94 --enable-udev
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_vmware vmwgfx)
100 $(use_enable libkms)
101 )
102 xorg-2_src_configure
103 }