# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Asus NVidia Fan Speed Controller" HOMEPAGE="http://www.consultmatt.co.uk/asusfan/" SRC_URI="http://www.consultmatt.co.uk/downloads/asusfan/${P}.tar.gz" LICENSE="GPL" SLOT="0" KEYWORDS="~x86 ~amd64" RDEPEND="virtual/libc" DEPEND="${RDEPEND} sys-devel/autoconf" src_compile() { libtoolize --copy --force ./autogen.sh || die ./configure || die emake || die } src_install() { dodir /usr/bin einstall || die dodoc AUTHORS README } pkg_postinst() { einfo "Add the following to /etc/modules.d/nvidia" einfo "install nvidia /usr/bin/asusfan -m 1 --temp=75:70:65:60 ; modprobe --ignore-install nvidia" einfo "then run modules-update and restart your system" }