diff options
Diffstat (limited to 'system/cpufreqd')
-rw-r--r-- | system/cpufreqd/README | 11 | ||||
-rw-r--r-- | system/cpufreqd/cpufreqd.SlackBuild | 80 | ||||
-rw-r--r-- | system/cpufreqd/cpufreqd.info | 8 | ||||
-rw-r--r-- | system/cpufreqd/doinst.sh | 15 | ||||
-rw-r--r-- | system/cpufreqd/slack-desc | 11 |
5 files changed, 125 insertions, 0 deletions
diff --git a/system/cpufreqd/README b/system/cpufreqd/README new file mode 100644 index 000000000000..6c0f3d930a4f --- /dev/null +++ b/system/cpufreqd/README @@ -0,0 +1,11 @@ +cpufreqd is meant to be a replacement of the speedstep applet you +can find on some other OS; it monitors cpu usage, battery level, +AC state, and running programs and adjusts the frequency governor +according to a set of rules specified in the config file. +You need a CPUFreq driver and either APM, ACPI (a recent version) +or PMU enabled in your kernel config in order for this deamon to work. + +You will also need to have the cpufrequtils package (which includes +libcpufreq) installed in order to build cpufreqd, and cpufreqd can +make use of libsensors and/or nvclock if you have them installed - +see the documentation included with the source tarball for more details. diff --git a/system/cpufreqd/cpufreqd.SlackBuild b/system/cpufreqd/cpufreqd.SlackBuild new file mode 100644 index 000000000000..ac3030f5d2e4 --- /dev/null +++ b/system/cpufreqd/cpufreqd.SlackBuild @@ -0,0 +1,80 @@ +#!/bin/sh + +# Slackware build script for cpufreqd + +# Copyright 2006 Robby Workman (http://rlworkman.net) +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Modified by the SlackBuilds.org project + +PRGNAM=cpufreqd +VERSION=2.1.1 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R a-s,u+w,go+r-w . + +CFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + || exit 1 + +make || exit 1 +make install-strip DESTDIR=$PKG || exit 1 + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mv $PKG/etc/cpufreqd.conf $PKG/etc/cpufreqd.conf.new + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/system/cpufreqd/cpufreqd.info b/system/cpufreqd/cpufreqd.info new file mode 100644 index 000000000000..47ce9d1f8719 --- /dev/null +++ b/system/cpufreqd/cpufreqd.info @@ -0,0 +1,8 @@ +PRGNAM="cpufreqd" +VERSION="2.1.1" +HOMEPAGE="http://cpufreqd.sourceforge.net/" +DOWNLOAD="http://dl.sourceforge.net/cpufreqd/cpufreqd-2.1.1.tar.bz2" +MD5SUM="06383f704bdf612ba2b8c46b27594266" +MAINTAINER="Robby Workman" +EMAIL="rw@rlworkman.net" +APPROVED="robw810" diff --git a/system/cpufreqd/doinst.sh b/system/cpufreqd/doinst.sh new file mode 100644 index 000000000000..3c57d2f70c3f --- /dev/null +++ b/system/cpufreqd/doinst.sh @@ -0,0 +1,15 @@ +config() { + NEW="$1" + OLD="`dirname $NEW`/`basename $NEW .new`" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/cpufreqd.conf.new + diff --git a/system/cpufreqd/slack-desc b/system/cpufreqd/slack-desc new file mode 100644 index 000000000000..b8435fc4f81f --- /dev/null +++ b/system/cpufreqd/slack-desc @@ -0,0 +1,11 @@ +cpufreqd: cpufreqd (cpu frequency scaling daemon) +cpufreqd: +cpufreqd: cpufreqd is meant to be a replacement of the speedstep applet you +cpufreqd: can find on some other OS, it monitors cpu usage, battery level, +cpufreqd: AC state and running programs and adjusts the frequency governor +cpufreqd: according to a set of rules specified in the config file. +cpufreqd: You need a CPUFreq driver and either APM, ACPI (a recent version) +cpufreqd: or PMU enabled in your kernel config in order for this deamon to work. +cpufreqd: +cpufreqd: Homepage: http://cpufreqd.sourceforge.net/ +cpufreqd: |