blob: 399762277684a6ef16918fb28e52cf137ea7544a (
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
|
# Copyright 1999-2010 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-20100410_pre.ebuild,v 1.1 2010/04/10 17:22:11 pacho Exp $
inherit emul-linux-x86
LICENSE="LGPL-2 MIT"
KEYWORDS="-* ~amd64 ~amd64-linux"
IUSE=""
DEPEND="app-admin/eselect-opengl"
RDEPEND=">=app-emulation/emul-linux-x86-xlibs-20100409
!<app-emulation/emul-linux-x86-xlibs-20100409
media-libs/mesa"
src_unpack() {
emul-linux-x86_src_unpack
rm -f "${S}/usr/lib32/libGL.so" || die
}
pkg_postinst() {
#update GL symlinks
eselect opengl set --use-old
}
|