blob: 971dcb8fd945e5cd6e2df2b56d47c5b036f739e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-opengl/emul-linux-x86-opengl-20121202-r1.ebuild,v 1.3 2013/02/24 23:28:36 pacho Exp $
EAPI=5
inherit emul-linux-x86
LICENSE="BSD MIT LGPL-3 SGI-B-2.0"
KEYWORDS="-* amd64 ~amd64-linux"
# https://bugs.gentoo.org/show_bug.cgi?id=445712
SRC_URI="${SRC_URI} https://dev.gentoo.org/~pacho/emul-linux-x86-${PV}/glu-9.0.0.tbz2"
DEPEND="app-admin/eselect-opengl
>=app-admin/eselect-mesa-0.0.9"
RDEPEND=">=app-emulation/emul-linux-x86-xlibs-20100611
!<app-emulation/emul-linux-x86-xlibs-20100611
media-libs/mesa"
src_prepare() {
emul-linux-x86_src_prepare
rm -f "${S}/usr/lib32/libGL.so" || die
rm -f "${S}/usr/lib32/libGL.so.1" || die
rm -rf "${S}/usr/include" || die
}
pkg_postinst() {
# Update GL symlinks
eselect opengl set --use-old || die
# And the same for mesa (bug #355393)
eselect mesa set 32bit --auto || die
}
|