blob: 0eaf0d828deef752f8f2286924830335d3a943c4 (
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
|
# Copyright 1999-2006 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.6629.ebuild,v 1.4 2006/02/03 13:39:57 blubb Exp $
inherit eutils
DESCRIPTION="NVIDIA Linux X11 Settings Utility"
HOMEPAGE="http://www.nvidia.com/"
NVIDIA_VERSION="1.0.6629"
SRC_URI="http://dev.gentoo.org/~cyfred/distfiles/${PN}-${NVIDIA_VERSION}.tar.gz"
S="${WORKDIR}/${PN}-1.0"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86 amd64"
RESTRICT=""
IUSE=""
DEPEND="virtual/libc
virtual/x11
>=x11-libs/gtk+-2
amd64? ( app-arch/bzip2 )"
RDEPEND=">=media-video/nvidia-glx-${NVIDIA_VERSION}
>=media-video/nvidia-kernel-${NVIDIA_VERSION}"
src_unpack() {
unpack ${A}
# libXNVCtrl.a is 32 bit built, fixing thanks augustus
use amd64 && \
cp ${FILESDIR}/libXNVCtrl.a.bz2 ${S}/src/libXNVCtrl/libXNVCtrl.a
}
src_compile() {
emake || 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/*
}
|