blob: cecbd51110b70ff477c2f9d76622872be64800f1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/nvclock/nvclock-0.7-r1.ebuild,v 1.1 2003/11/05 17:06:38 malverian Exp $
inherit eutils
MY_P="${PN}${PV}"
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="x86"
IUSE="gtk gtk2 qt"
DEPEND="virtual/glibc
sys-devel/autoconf
gtk? ( =x11-libs/gtk+-2* )
qt? ( x11-libs/qt )"
src_compile() {
epatch ${FILESDIR}/configure.in.diff || die
mv configure.in configure.ac
./autogen.sh || die
export QTDIR=/usr/qt/3
local myconf
use gtk || myconf="${myconf} --disable-gtk"
use qt && myconf="${myconf} --enable-qt"
./configure ${myconf} || die
make || die
}
src_install() {
dodir /usr/bin /etc/init.d /etc/conf.d
einstall || die
cp ${FILESDIR}/nvclock_initd ${D}/etc/init.d/nvclock
cp ${FILESDIR}/nvclock_confd ${D}/etc/conf.d/nvclock
chmod u+x ${D}/etc/init.d/nvclock
dodoc AUTHORS COPYING README
}
pkg_postinst() {
einfo "To enable card overclocking at startup, edit your /etc/conf.d/nvclock"
einfo "accordingly and then run: rc-update add nvclock default"
}
|