diff options
author | Piotr Jaroszyński <peper@gentoo.org> | 2009-10-17 12:13:13 +0000 |
---|---|---|
committer | Piotr Jaroszyński <peper@gentoo.org> | 2009-10-17 12:13:13 +0000 |
commit | 9f11b2c3df3920102778b6f6e1c0e335287ce1f8 (patch) | |
tree | bca08df59865ce391ac380808f1d54618f77df2f /media-video/nvidia-settings | |
parent | Version bump (diff) | |
download | gentoo-2-9f11b2c3df3920102778b6f6e1c0e335287ce1f8.tar.gz gentoo-2-9f11b2c3df3920102778b6f6e1c0e335287ce1f8.tar.bz2 gentoo-2-9f11b2c3df3920102778b6f6e1c0e335287ce1f8.zip |
Add 190.40.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-video/nvidia-settings')
-rw-r--r-- | media-video/nvidia-settings/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/nvidia-settings/nvidia-settings-190.40.ebuild | 71 |
2 files changed, 78 insertions, 1 deletions
diff --git a/media-video/nvidia-settings/ChangeLog b/media-video/nvidia-settings/ChangeLog index 06ba132a0008..687ac75fb122 100644 --- a/media-video/nvidia-settings/ChangeLog +++ b/media-video/nvidia-settings/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/nvidia-settings # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/nvidia-settings/ChangeLog,v 1.73 2009/09/27 11:19:30 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/nvidia-settings/ChangeLog,v 1.74 2009/10/17 12:13:13 peper Exp $ + +*nvidia-settings-190.40 (17 Oct 2009) + + 17 Oct 2009; Piotr Jaroszyński <peper@gentoo.org> + +nvidia-settings-190.40.ebuild: + Add 190.40. *nvidia-settings-190.36 (27 Sep 2009) diff --git a/media-video/nvidia-settings/nvidia-settings-190.40.ebuild b/media-video/nvidia-settings/nvidia-settings-190.40.ebuild new file mode 100644 index 000000000000..e0519f148c47 --- /dev/null +++ b/media-video/nvidia-settings/nvidia-settings-190.40.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/nvidia-settings/nvidia-settings-190.40.ebuild,v 1.1 2009/10/17 12:13:13 peper Exp $ + +inherit eutils toolchain-funcs multilib flag-o-matic + +MY_P="${PN}-1.0" + +DESCRIPTION="NVIDIA Linux X11 Settings Utility" +HOMEPAGE="http://www.nvidia.com/" +SRC_URI="ftp://download.nvidia.com/XFree86/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd" +IUSE="" + +# xorg-server is used in the depends as nvidia-settings builds against some +# headers in /usr/include/xorg/. +# This also allows us to optimize out a lot of the other dependancies, as +# between gtk and xorg-server, almost all libraries and headers are accounted +# for. +DEPEND=">=x11-libs/gtk+-2 + dev-util/pkgconfig + x11-base/xorg-server + x11-libs/libXt + x11-libs/libXv + x11-proto/xf86driproto + x11-proto/xf86vidmodeproto" + +RDEPEND=">=x11-libs/gtk+-2 + x11-base/xorg-server + x11-libs/libXt + x11-drivers/nvidia-drivers" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + einfo "Building libXNVCtrl..." + cd "${S}/src/libXNVCtrl" + make clean || die "Cleaning old libXNVCtrl failed" + append-flags -fPIC + emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" libXNVCtrl.a || die "Building libXNVCtrl failed!" + filter-flags -fPIC + + 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 + + # Install libXNVCtrl and headers + insinto "/usr/$(get_libdir)" + doins src/libXNVCtrl/libXNVCtrl.a + insinto /usr/include/NVCtrl + doins src/libXNVCtrl/{NVCtrl,NVCtrlLib}.h + + # Install icon and .desktop entry + doicon "${FILESDIR}/icon/${PN}.png" + domenu "${FILESDIR}/icon/${PN}.desktop" + + # Install manpage + doman doc/nvidia-settings.1 + + # Now install documentation + dodoc doc/*.txt +} |