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-proto/glproto: ChangeLog glproto-1.4.14.ebuild
Date: Fri, 01 Jul 2011 23:56:11
Message-Id: 20110701235602.428242004B@flycatcher.gentoo.org
1 chithanh 11/07/01 23:56:02
2
3 Modified: ChangeLog
4 Added: glproto-1.4.14.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.84 x11-proto/glproto/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/glproto/ChangeLog?rev=1.84&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/glproto/ChangeLog?rev=1.84&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/glproto/ChangeLog?r1=1.83&r2=1.84
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-proto/glproto/ChangeLog,v
20 retrieving revision 1.83
21 retrieving revision 1.84
22 diff -u -r1.83 -r1.84
23 --- ChangeLog 14 Feb 2011 14:34:03 -0000 1.83
24 +++ ChangeLog 1 Jul 2011 23:56:02 -0000 1.84
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-proto/glproto
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/ChangeLog,v 1.83 2011/02/14 14:34:03 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/ChangeLog,v 1.84 2011/07/01 23:56:02 chithanh Exp $
30 +
31 +*glproto-1.4.14 (01 Jul 2011)
32 +
33 + 01 Jul 2011; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +glproto-1.4.14.ebuild:
35 + Version bump.
36
37 14 Feb 2011; Kacper Kowalik <xarthisius@g.o> glproto-1.4.12.ebuild:
38 ppc stable wrt #344827, #354237
39
40
41
42 1.1 x11-proto/glproto/glproto-1.4.14.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/glproto/glproto-1.4.14.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-proto/glproto/glproto-1.4.14.ebuild?rev=1.1&content-type=text/plain
46
47 Index: glproto-1.4.14.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-proto/glproto/glproto-1.4.14.ebuild,v 1.1 2011/07/01 23:56:02 chithanh Exp $
52
53 EAPI=4
54 inherit xorg-2
55 DESCRIPTION="X.Org GL protocol headers"
56 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
57 LICENSE="SGI-B-2.0"
58 IUSE=""
59
60 RDEPEND="app-admin/eselect-opengl"
61 DEPEND=""
62
63 src_install() {
64 xorg-2_src_install
65 dynamic_libgl_install
66 }
67
68 pkg_postinst() {
69 xorg-2_pkg_postinst
70 eselect opengl set --use-old xorg-x11
71 }
72
73 dynamic_libgl_install() {
74 # next section is to setup the dynamic libGL stuff
75 ebegin "Moving GL files for dynamic switching"
76 dodir /usr/$(get_libdir)/opengl/xorg-x11/include
77 local x=""
78 # glext.h added for #54984
79 for x in "${D}"/usr/include/GL/{glxtokens.h,glxmd.h,glxproto.h}; do
80 if [[ -f ${x} || -L ${x} ]]; then
81 mv -f "${x}" "${D}"/usr/$(get_libdir)/opengl/xorg-x11/include
82 fi
83 done
84 eend 0
85 }