1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-03-27 23:33:32 +01:00

Added nozomi ebuild. Rmoved oboslete ebuilds

This commit is contained in:
root
2010-03-27 10:31:06 +01:00
parent 58e78d874f
commit 1007f22387
84 changed files with 139 additions and 11697 deletions

View File

@@ -1,4 +0,0 @@
AUX nvclock_confd 360 RMD160 a793577e43a9a66bb0eb8b4d22e8ddb39b6ac30c SHA1 c9da108dbe24f5c1a42f859b6d28b83031fcb8ce SHA256 2bbf36faa3b78425471275f70c4d8abdff4720dc854152e4ad7b2da68810bdca
AUX nvclock_initd 146 RMD160 cab3315e3aa033d5c220bef85d37ab0a7f623fa9 SHA1 442d2d56c51595b04c3d89d50e33431f66942ed4 SHA256 c56108c1358a76205861649b76f6ee94657983e01a795e84af64ac28d4667fb4
DIST nvclock0.8b4.tar.gz 336999 RMD160 02dbfde37514b34c7f0e5a8b71e8205e32575dcc SHA1 758b3848b036e2b3e25368cfec4c6cd82a963dc9 SHA256 bdb695e869822c4740c361bcace81b5527b774002d42785c986da9a92d7a9b0b
EBUILD nvclock-0.8_beta4.ebuild 984 RMD160 9da8200a8da1fbad36290dbd0b59086b50408bce SHA1 cdd93bad48df367e8b812d1680ac02295a2f85a0 SHA256 749dda5d501719480993ec35ff41950c848690fe9a9db71b2b576edd33377e5a

View File

@@ -1,9 +0,0 @@
# Config file for /etc/init.d/nvclock
# Set the core clock speed after -n and the memory clock speed after -m
# Check your current speeds by running 'nvclock -s' at the command line
# so you don't overclock too much and burn out the card
# Test out your overclocking before adding this to the bootup!
CLOCKOPTS="-s"
#CLOCKOPTS="-n <corespeed> -m <memspeed>"

View File

@@ -1,12 +0,0 @@
#!/sbin/runscript
depend() {
before xdm
}
start() {
ebegin "Setting nvidia card overclock speed"
nvclock ${CLOCKOPTS} >/dev/null
eend $?
}

View File

@@ -1,36 +0,0 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/nvclock/nvclock-0.8_beta2.ebuild,v 1.4 2008/06/04 18:36:44 flameeyes Exp $
inherit eutils autotools
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="x86 ~amd64"
IUSE="gtk"
RDEPEND="virtual/libc
gtk? ( =x11-libs/gtk+-2* )"
src_compile() {
econf $(use_enable gtk) || die "Error: econf failed."
emake || die "Error: emake failed."
}
src_install() {
dodir /usr/bin
einstall || die
newinitd "${FILESDIR}"/nvclock_initd nvclock
newconfd "${FILESDIR}"/nvclock_confd nvclock
}
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"
}