blob: c13d29159e9b894902efe7642468d1324707f010 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/nvclock/nvclock-0.8_beta4-r4.ebuild,v 1.4 2009/09/27 10:50:38 volkmar Exp $
EAPI="2"
inherit eutils autotools toolchain-funcs
MY_P="${PN}${PV/_beta/b}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="NVIDIA Overclocking Utility"
HOMEPAGE="http://www.linuxhardware.org/nvclock/"
SRC_URI="http://www.linuxhardware.org/nvclock/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="gtk qt3"
RDEPEND="gtk? ( =x11-libs/gtk+-2* )
qt3? ( =x11-libs/qt-3* )"
src_prepare() {
# Patch to fix broken autoconf macro "--with-qt-libs" needed below
# Submitted upstream, hopefully fixed in a later version
use qt3 && epatch "${FILESDIR}"/nvclock_acinclude_qtlibs.patch
# Bug #240846:
epatch "${FILESDIR}"/${P}-flags.patch
epatch "${FILESDIR}"/${P}-as-needed.patch
sed -e 's:NV-CONROL:NV-CONTROL:g' -i configure.in
sed -i Makefile.in -e "s:/share/doc/nvclock:/share/doc/${PF}:g" || \
die "sed failed"
eautoreconf
}
src_configure() {
tc-export CC CXX
# Needed to ensure it compiles against Qt3 rather than Qt4
export QTDIR=/usr/qt/3
export MOC=${QTDIR}/bin/moc
local myconf
myconf="--bindir=/usr/bin"
# Qt3 package doesn't install symlinks from ${QTDIR}/lib64 to ${QTDIR}/lib
use amd64 && myconf="${myconf} --with-qt-libs=${QTDIR}/lib64"
if use gtk || use qt3; then
myconf="${myconf} --enable-nvcontrol"
else
myconf="${myconf} --disable-nvcontrol"
fi
econf $(use_enable qt3 qt) $(use_enable gtk) ${myconf} || die
}
src_compile() {
emake -j1 || die "emake failed"
}
src_install() {
dodir /usr/bin
emake DESTDIR="${D}" install || die
#dodoc AUTHORS README
newinitd "${FILESDIR}"/nvclock_initd nvclock
newconfd "${FILESDIR}"/nvclock_confd nvclock
#insinto /usr/share/applications
#doins nvclock.desktop
#validate_desktop_entries /usr/share/applications/nvclock.desktop
}
pkg_postinst() {
elog "To enable card overclocking at startup, edit your /etc/conf.d/nvclock"
elog "accordingly and then run: rc-update add nvclock default"
}
|