# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/nvidia-glx/nvidia-glx-1.0.5336-r2.ebuild,v 1.6 2004/06/25 00:47:03 agriffis Exp $ inherit eutils if use x86; then PKG_V="pkg1" elif use amd64 ; then PKG_V="pkg2" fi NV_V="${PV/1.0./1.0-}" if use x86; then NV_PACKAGE="NVIDIA-Linux-x86-${NV_V}" elif use amd64 ; then NV_PACKAGE="NVIDIA-Linux-x86_64-${NV_V}" fi S="${WORKDIR}/${NV_PACKAGE}-${PKG_V}" DESCRIPTION="XFree86 GLX libraries for the NVIDIA's X driver" HOMEPAGE="http://www.nvidia.com/" SRC_URI="x86? (ftp://download.nvidia.com/XFree86/Linux-x86/${NV_V}/${NV_PACKAGE}-${PKG_V}.run) amd64? (http://download.nvidia.com/XFree86/Linux-x86_64/${NV_V}/${NV_PACKAGE}-${PKG_V}.run)" LICENSE="NVIDIA" SLOT="0" KEYWORDS="-* ~x86 ~amd64" RESTRICT="nostrip" DEPEND="virtual/glibc virtual/x11 >=x11-base/opengl-update-1.3 ~media-video/nvidia-kernel-${PV}" PROVIDE="virtual/opengl" export _POSIX2_VERSION="199209" pkg_setup() { # We need xfree-4.2.0-r9 to support the dynamic libGL* stuff if has_version "x11-base/xfree" then if has_version " ${D}/${NV_ROOT}/lib/libGL.la # Should we install the .la for the 32bit libs on amd64? } pkg_preinst() { #clean the dinamic libGL stuff's home to ensure #we dont have stale libs floating around if [ -d ${ROOT}/usr/lib/opengl/nvidia ] then rm -rf ${ROOT}/usr/lib/opengl/nvidia/* fi #make sure we nuke the old nvidia-glx's env.d file if [ -e ${ROOT}/etc/env.d/09nvidia ] then rm -f ${ROOT}/etc/env.d/09nvidia fi } pkg_postinst() { #switch to the nvidia implementation if [ "${ROOT}" = "/" ] then /usr/sbin/opengl-update nvidia fi einfo einfo "To use the Nvidia GLX, run \"opengl-update nvidia\"" einfo }