blob: 7f4493ad8869ec4fe78b49def5e1f89dc849c00f (
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.2 2010/10/04 12:50:47 hwoarang 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
}
|