Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-proto/glproto/
Date: Thu, 26 Jan 2017 00:04:22
Message-Id: 1485389048.3335af100d9d6389d063310d9aae7ee5f3ed0879.mattst88@gentoo
1 commit: 3335af100d9d6389d063310d9aae7ee5f3ed0879
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 26 00:01:37 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 26 00:04:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3335af10
7
8 x11-proto/glproto: Drop versions depending on <eselect-opengl-1.3.0.
9
10 x11-proto/glproto/glproto-1.4.17.ebuild | 41 ---------------------------------
11 1 file changed, 41 deletions(-)
12
13 diff --git a/x11-proto/glproto/glproto-1.4.17.ebuild b/x11-proto/glproto/glproto-1.4.17.ebuild
14 deleted file mode 100644
15 index 945f3eb..00000000
16 --- a/x11-proto/glproto/glproto-1.4.17.ebuild
17 +++ /dev/null
18 @@ -1,41 +0,0 @@
19 -# Copyright 1999-2015 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -# $Id$
22 -
23 -EAPI=5
24 -
25 -XORG_MULTILIB=yes
26 -inherit xorg-2
27 -
28 -DESCRIPTION="X.Org GL protocol headers"
29 -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
30 -LICENSE="SGI-B-2.0"
31 -IUSE=""
32 -
33 -RDEPEND=">=app-eselect/eselect-opengl-1.2.6"
34 -DEPEND=""
35 -
36 -src_install() {
37 - xorg-2_src_install
38 - dynamic_libgl_install
39 -}
40 -
41 -pkg_postinst() {
42 - xorg-2_pkg_postinst
43 - eselect opengl set --ignore-missing --use-old xorg-x11
44 -}
45 -
46 -dynamic_libgl_install() {
47 - # next section is to setup the dynamic libGL stuff
48 - ebegin "Moving GL files for dynamic switching"
49 - local gldir=/usr/$(get_libdir)/opengl/xorg-x11/include/GL
50 - dodir ${gldir}
51 - local x=""
52 - # glext.h added for #54984
53 - for x in "${ED}"/usr/include/GL/{glxtokens.h,glxmd.h,glxproto.h}; do
54 - if [[ -f ${x} || -L ${x} ]]; then
55 - mv -f "${x}" "${ED}"${gldir}
56 - fi
57 - done
58 - eend 0
59 -}