blob: fae650611f3e08b5cc3885b302c03725844b61c5 (
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
|
# Copyright 1999-2004 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.6106.ebuild,v 1.2 2004/11/07 07:25:08 cyfred Exp $
inherit eutils
DESCRIPTION="NVIDIA Linux X11 Settings Utility"
HOMEPAGE="http://www.nvidia.com/"
SRC_URI="http://dev.gentoo.org/~cyfred/distfiles/${P}.tar.gz"
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-${PV}
>=media-video/nvidia-kernel-${PV}"
src_unpack() {
unpack ${A}
# libXNVCtrl.a is 32 bit built, fixing thanks augustus
use amd64 && \
bzip2 -dc ${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/*
}
|