blob: 3eea5795b663101df6c1eb3279062a431d0f3998 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2.ebuild,v 1.2 2006/03/09 01:45:02 flameeyes Exp $
inherit multilib
DESCRIPTION="X11R6 libraries for emulation of 32bit x86 on amd64"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="mirror://gentoo/emul-linux-x86-xlibs-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* amd64"
IUSE="opengl"
DEPEND=""
RDEPEND="opengl? ( x11-base/opengl-update )
virtual/libc
>=app-emulation/emul-linux-x86-baselibs-2.0"
S=${WORKDIR}
RESTRICT="nostrip"
pkg_preinst() {
# Check for bad symlink before installing, bug 84441.
if [ -L /emul/linux/x86/usr/lib/X11 ]; then
rm -f /emul/linux/x86/usr/lib/X11
fi
}
src_install() {
cp -RPvf ${WORKDIR}/* ${D}/
local libdir="lib32"
if has_multilib_profile; then
libdir=$(get_abi_LIBDIR x86)
fi
dodir /usr/${libdir}/opengl
dosym /emul/linux/x86/usr/lib/opengl/xorg-x11 /usr/${libdir}/opengl/xorg-x11
}
pkg_postinst() {
#update GL symlinks
if use opengl ; then
/usr/bin/opengl-update --use-old
fi
}
|