# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/nvidia-settings/nvidia-settings-1.0.7167.ebuild,v 1.2 2005/06/12 12:15:17 swegener Exp $ inherit eutils toolchain-funcs NVIDIA_VERSION="${PV}" S="${WORKDIR}/${PN}-1.0" DESCRIPTION="NVIDIA Linux X11 Settings Utility" HOMEPAGE="http://www.nvidia.com/" SRC_URI="http://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-1.0.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="-* ~x86 ~amd64" IUSE= DEPEND="virtual/libc virtual/x11 >=x11-libs/gtk+-2" RDEPEND=">=media-video/nvidia-glx-${NVIDIA_VERSION} >=media-video/nvidia-kernel-${NVIDIA_VERSION}" src_compile() { cd ${S}/src/libXNVCtrl einfo "Building libXNVCtrl..." # This next voodoo is just to work around xmkmf's broken behaviour # after the Xorg move to /usr (or I think, as I have not messed # with it in ages). ln -snf ${ROOT}/usr/include/X11 include xmkmf -a || die "Running xmkmf failed!" make CCOPTIONS="${CFLAGS}" clean all || die "Building libXNVCtrl failed!" cd ${S} einfo "Building nVidia-Settings..." emake CC=$(tc-getCC) || die "Failed to build nvidia-settings" } src_install() { # Install the executable exeinto /usr/bin doexe nvidia-settings # Now install documentation rm -f doc/Makefile* dodoc doc/* }