summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author dsomero <xgizzmo@slackbuilds.org>2012-08-16 18:40:27 -0400
committer Robby Workman <rworkman@slackbuilds.org>2012-08-17 23:05:02 -0500
commit0f95aaa7b74903cad3cd6705319517e2468c004d (patch)
tree28baf4046619429983fa6858403d60bdabf63ceb /system
parent7382c90f70d34c289d6ae3ac84b29f40c22b96df (diff)
downloadslackbuilds-0f95aaa7b74903cad3cd6705319517e2468c004d.tar.gz
slackbuilds-0f95aaa7b74903cad3cd6705319517e2468c004d.tar.xz
system/htop: Removed (part of Slackware 14.0)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org> Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/htop/README9
-rw-r--r--system/htop/doinst.sh4
-rw-r--r--system/htop/htop.SlackBuild101
-rw-r--r--system/htop/htop.info9
-rw-r--r--system/htop/slack-desc19
5 files changed, 0 insertions, 142 deletions
diff --git a/system/htop/README b/system/htop/README
deleted file mode 100644
index 791a6c4f3f..0000000000
--- a/system/htop/README
+++ /dev/null
@@ -1,9 +0,0 @@
-htop is an interactive process viewer for Linux. It aims to be a 'better top'
-You can scroll the process list vertically and horizontally, and select a
-process to be killed with the arrow keys instead of by typing its process
-id.
-
-This release adds per-process I/O statistics, Unicode support, and new
-handling of CPU count for threaded processes: it can now show either
-per-thread stats or a sum of all threads depending whether user threads
-are shown or hidden. There were also improvements in mouse support.
diff --git a/system/htop/doinst.sh b/system/htop/doinst.sh
deleted file mode 100644
index eec7ae1d81..0000000000
--- a/system/htop/doinst.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-if [ -x usr/bin/update-desktop-database ]; then
- usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
-fi
-
diff --git a/system/htop/htop.SlackBuild b/system/htop/htop.SlackBuild
deleted file mode 100644
index c2677e32a1..0000000000
--- a/system/htop/htop.SlackBuild
+++ /dev/null
@@ -1,101 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for htop
-# Copyright 2007-2012 Michiel van Wessem, Leicester, United Kingdom
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "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 COPYRIGHT
-# OWNER OR CONTRIBUTORS 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=htop
-VERSION=${VERSION:-1.0.1}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-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"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man/ \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --disable-debug \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog INSTALL NEWS 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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/system/htop/htop.info b/system/htop/htop.info
deleted file mode 100644
index e0d5f63f3d..0000000000
--- a/system/htop/htop.info
+++ /dev/null
@@ -1,9 +0,0 @@
-PRGNAM="htop"
-VERSION="1.0.1"
-HOMEPAGE="http://htop.sourceforge.net"
-DOWNLOAD="http://downloads.sourceforge.net/htop/htop-1.0.1.tar.gz"
-MD5SUM="d3b80d905a6bff03f13896870787f901"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Michiel van Wessem"
-EMAIL="michiel@slackbuilds.org"
diff --git a/system/htop/slack-desc b/system/htop/slack-desc
deleted file mode 100644
index ac1a8dae23..0000000000
--- a/system/htop/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------------------------------------------------------|
-htop: htop (Interactive process viewer)
-htop:
-htop: This is htop, an interactive process viewer for Linux. It is a text-
-htop: mode application (for console or X terminals) and requires ncurses.
-htop: htop has been tested with Linux 2.4 and 2.6 kernels.
-htop:
-htop: Homepage: http://htop.sourceforge.net/
-htop:
-htop:
-htop:
-htop: