summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2010-05-18 00:44:30 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-19 09:06:57 -0500
commit5d3a0ba5d165ee2a27bc8f4efab30c0ae83b68c1 (patch)
tree41ba97e81af9c0fc6602fc26cc62949cdd5254f6 /libraries
parentde887c3cc0742496c2100f3b1ed1a59cdf29462f (diff)
downloadslackbuilds-5d3a0ba5d165ee2a27bc8f4efab30c0ae83b68c1.tar.gz
slackbuilds-5d3a0ba5d165ee2a27bc8f4efab30c0ae83b68c1.tar.xz
libraries/cpufrequtils: Removed (part of Slackware 13.1)
Diffstat (limited to 'libraries')
-rw-r--r--libraries/cpufrequtils/README9
-rw-r--r--libraries/cpufrequtils/cpufrequtils.SlackBuild81
-rw-r--r--libraries/cpufrequtils/cpufrequtils.info10
-rw-r--r--libraries/cpufrequtils/slack-desc19
4 files changed, 0 insertions, 119 deletions
diff --git a/libraries/cpufrequtils/README b/libraries/cpufrequtils/README
deleted file mode 100644
index 3fa5d26a44..0000000000
--- a/libraries/cpufrequtils/README
+++ /dev/null
@@ -1,9 +0,0 @@
-"libcpufreq" is a library which offers a unified access method for userspace
-tools and programs to the cpufreq core and drivers in the Linux kernel. This
-allows for code reduction in userspace tools, a clean implementation of
-the interaction to the cpufreq core, and support for both the sysfs and proc
-interfaces [depending on configuration].
-"cpufreq-info" determines current cpufreq settings, and provides useful
-debug information to users and bug-hunters.
-"cpufreq-set" allows to set a specific frequency and/or new cpufreq policies
-without having to type "/sys/devices/system/cpu/cpu0/cpufreq" all the time.
diff --git a/libraries/cpufrequtils/cpufrequtils.SlackBuild b/libraries/cpufrequtils/cpufrequtils.SlackBuild
deleted file mode 100644
index 42f9fd070f..0000000000
--- a/libraries/cpufrequtils/cpufrequtils.SlackBuild
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for cpufrequtils
-
-# Copyright 2006-2009 Robby Workman, Northport, Alabama, USA
-# 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.
-
-PRGNAM=cpufrequtils
-VERSION=005
-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"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-make libdir=/usr/lib${LIBDIRSUFFIX}
-make install libdir=/usr/lib${LIBDIRSUFFIX} DESTDIR=$PKG
-
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
-)
-
-( cd $PKG/usr/man || exit 1
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING README $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/libraries/cpufrequtils/cpufrequtils.info b/libraries/cpufrequtils/cpufrequtils.info
deleted file mode 100644
index 3856fb12f0..0000000000
--- a/libraries/cpufrequtils/cpufrequtils.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="cpufrequtils"
-VERSION="005"
-HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html"
-DOWNLOAD="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-005.tar.bz2"
-MD5SUM="73a41589fe74b73fc530f4179f2c6142"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Robby Workman"
-EMAIL="rw@rlworkman.net"
-APPROVED="Erik Hanson"
diff --git a/libraries/cpufrequtils/slack-desc b/libraries/cpufrequtils/slack-desc
deleted file mode 100644
index 18d16f1020..0000000000
--- a/libraries/cpufrequtils/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------------------------------------------------------|
-cpufrequtils: libcpufreq (cpu frequency utilities)
-cpufrequtils:
-cpufrequtils: "libcpufreq" is a library which offers a unified access method
-cpufrequtils: for userspace tools and programs to the cpufreq core and drivers
-cpufrequtils: in the Linux kernel. This allows for code reduction in userspace
-cpufrequtils: tools, a clean implementation of the interaction to the cpufreq
-cpufrequtils: core, and support for both the sysfs and proc interfaces.
-cpufrequtils:
-cpufrequtils: www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html
-cpufrequtils:
-cpufrequtils: