summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChi-Thanh Christopher Nguyen <chithanh@gentoo.org>2013-12-15 19:56:25 +0100
committerChi-Thanh Christopher Nguyen <chithanh@gentoo.org>2013-12-15 19:56:25 +0100
commit2d716dba5fb5445bdd49debdb116da84a70b5595 (patch)
tree4106fa1480072dc596f0f5aa750b950547ca96ed /x11-proto
parentx11-proto/glproto: bump 1.4.17 (diff)
downloadx11-2d716dba5fb5445bdd49debdb116da84a70b5595.tar.gz
x11-2d716dba5fb5445bdd49debdb116da84a70b5595.tar.bz2
x11-2d716dba5fb5445bdd49debdb116da84a70b5595.zip
Remove package versions that are in portage now.
Diffstat (limited to 'x11-proto')
-rw-r--r--x11-proto/glproto/Manifest1
-rw-r--r--x11-proto/glproto/glproto-1.4.17.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/x11-proto/glproto/Manifest b/x11-proto/glproto/Manifest
deleted file mode 100644
index ca88d46a..00000000
--- a/x11-proto/glproto/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST glproto-1.4.17.tar.bz2 126969 SHA256 adaa94bded310a2bfcbb9deb4d751d965fcfe6fb3a2f6d242e2df2d6589dbe40 SHA512 3e5bb1949ab9993e07d2ed7e829b9e0a8803eab476e9f4082fc01087c3dce01f3bcb9d55261eaf60e55977a689b326ed1dcf40f74d5e1fc660c83bea094b6754 WHIRLPOOL 48b345a946f136cdd011d25ac796cd43c761fbe052e5d238c6250c4db798c5612978b1e526b10bd1b870bb302f745574a8e4ed8403464305278afb15694f4630
diff --git a/x11-proto/glproto/glproto-1.4.17.ebuild b/x11-proto/glproto/glproto-1.4.17.ebuild
deleted file mode 100644
index c7d40b96..00000000
--- a/x11-proto/glproto/glproto-1.4.17.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-XORG_MULTILIB=yes
-inherit xorg-2
-
-DESCRIPTION="X.Org GL protocol headers"
-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"
-LICENSE="SGI-B-2.0"
-IUSE=""
-
-RDEPEND=">=app-admin/eselect-opengl-1.2.6"
-DEPEND=""
-
-src_install() {
- xorg-2_src_install
- dynamic_libgl_install
-}
-
-pkg_postinst() {
- xorg-2_pkg_postinst
- eselect opengl set --ignore-missing --use-old xorg-x11
-}
-
-dynamic_libgl_install() {
- # next section is to setup the dynamic libGL stuff
- ebegin "Moving GL files for dynamic switching"
- local gldir=/usr/$(get_libdir)/opengl/xorg-x11/include/GL
- dodir ${gldir}
- local x=""
- # glext.h added for #54984
- for x in "${ED}"/usr/include/GL/{glxtokens.h,glxmd.h,glxproto.h}; do
- if [[ -f ${x} || -L ${x} ]]; then
- mv -f "${x}" "${ED}"${gldir}
- fi
- done
- eend 0
-}