blob: e56e5ca810ac5ffdb71b31fbd6836401a3a3462d (
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-20100915.ebuild,v 1.1 2010/09/15 11:47:19 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-20100611
!<app-emulation/emul-linux-x86-xlibs-20100611
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
}
|