From 14107a872614710967d3ae565f0253bcbdba55a1 Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Wed, 12 May 2010 11:48:00 +0200 Subject: system/cpufreqd: Removed from 12.2 repository --- system/cpufreqd/README | 11 ----- system/cpufreqd/cpufreqd.SlackBuild | 80 ------------------------------------- system/cpufreqd/cpufreqd.info | 8 ---- system/cpufreqd/doinst.sh | 14 ------- system/cpufreqd/slack-desc | 19 --------- 5 files changed, 132 deletions(-) delete mode 100644 system/cpufreqd/README delete mode 100644 system/cpufreqd/cpufreqd.SlackBuild delete mode 100644 system/cpufreqd/cpufreqd.info delete mode 100644 system/cpufreqd/doinst.sh delete mode 100644 system/cpufreqd/slack-desc (limited to 'system') diff --git a/system/cpufreqd/README b/system/cpufreqd/README deleted file mode 100644 index 6c0f3d930a..0000000000 --- a/system/cpufreqd/README +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 0972c06ff9..0000000000 --- a/system/cpufreqd/cpufreqd.SlackBuild +++ /dev/null @@ -1,80 +0,0 @@ -#!/bin/sh - -# Slackware build script for cpufreqd - -# Copyright 2006-2007 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 deleted file mode 100644 index 7085be6f71..0000000000 --- a/system/cpufreqd/cpufreqd.info +++ /dev/null @@ -1,8 +0,0 @@ -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="rworkman" diff --git a/system/cpufreqd/doinst.sh b/system/cpufreqd/doinst.sh deleted file mode 100644 index 038f30587a..0000000000 --- a/system/cpufreqd/doinst.sh +++ /dev/null @@ -1,14 +0,0 @@ -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 deleted file mode 100644 index 957c38be7e..0000000000 --- a/system/cpufreqd/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -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: -- cgit v1.2.3-80-g2a13