summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:26 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:26 +0200
commit01442866b097ad4e57f32068537b4a54208205c3 (patch)
tree890f0325d176824f36beea76e49f22785ef66b45 /system
parentc04b1d8678d66bf5cda81a6966e8735e83b18d06 (diff)
downloadslackbuilds-01442866b097ad4e57f32068537b4a54208205c3.tar.gz
slackbuilds-01442866b097ad4e57f32068537b4a54208205c3.tar.xz
system/pmem: Removed from 13.0 repository
Diffstat (limited to 'system')
-rw-r--r--system/pmem/README4
-rw-r--r--system/pmem/pmem.138
-rw-r--r--system/pmem/pmem.SlackBuild74
-rw-r--r--system/pmem/pmem.info8
-rw-r--r--system/pmem/slack-desc18
5 files changed, 0 insertions, 142 deletions
diff --git a/system/pmem/README b/system/pmem/README
deleted file mode 100644
index 13cd2c576a..0000000000
--- a/system/pmem/README
+++ /dev/null
@@ -1,4 +0,0 @@
-pmem (Process Memory Information)
-
-Small Linux/Unix command line utility that displays memory information
-about processes.
diff --git a/system/pmem/pmem.1 b/system/pmem/pmem.1
deleted file mode 100644
index 101bc5762e..0000000000
--- a/system/pmem/pmem.1
+++ /dev/null
@@ -1,38 +0,0 @@
-.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36.
-.TH PMEM "1" "December 2008" "pmem 1.1.2 (http://www.pmem.net/ Daniel Etzold <detzold@gmx.de>)" "User Commands"
-.SH NAME
-pmem \- manual page for pmem 1.1.2 (http://www.pmem.net/ Daniel Etzold <detzold@gmx.de>)
-.SH DESCRIPTION
-usage: ./pmem [OPTIONS] PIDs
-Determines the memory usage of a process.
-Options:
-.TP
-\fB\-z\fR
-show size (default is resident)
-.TP
-\fB\-s\fR
-show shared memory
-.TP
-\fB\-m\fR
-convert to MB
-.TP
-\fB\-k\fR
-convert to KB
-.TP
-\fB\-d\fR
-show details
-.TP
-\fB\-l\fR
-log memory usage of given pids
-.TP
-\fB\-i\fR <n>
-log interval in milliseconds [default: 100]
-.TP
-\fB\-g\fR <f>
-write a gnuplot command file into plot.gnu
-.TP
-\fB\-h\fR
-this help screen
-.TP
-\fB\-v\fR
-version
diff --git a/system/pmem/pmem.SlackBuild b/system/pmem/pmem.SlackBuild
deleted file mode 100644
index 620cf30a35..0000000000
--- a/system/pmem/pmem.SlackBuild
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Pmem
-
-# Written by Menno Duursma <druiloor@zonnet.nl>
-
-# This program is free software. It comes without any warranty.
-# Granted WTFPLv2, as published by Sam Hocevar dec'04.
-# For details see http://sam.zoy.org/wtfpl/COPYING
-
-PRGNAM=pmem
-VERSION=${VERSION:-1.1.2}
-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"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-fi
-
-set -e # Exit on most errors
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xzvf $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 \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man
-
-make
-make install-strip DESTDIR=$PKG
-
-# help2man --no-info --help-option='-h' --version-option='-v' ./pmem > pmem.1
-mkdir -p $PKG/usr/man/man1
-cat $CWD/pmem.1 > $PKG/usr/man/man1/pmem.1
-
-( 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 [A-Z][A-Z]* ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README.$TAG
-
-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.tgz
diff --git a/system/pmem/pmem.info b/system/pmem/pmem.info
deleted file mode 100644
index 3ecc8d4f3f..0000000000
--- a/system/pmem/pmem.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="pmem"
-VERSION="1.1.2"
-HOMEPAGE="http://www.pmem.net"
-DOWNLOAD="http://www.pmem.net/pmem-1.1.2.tar.gz"
-MD5SUM="bfc9e80a6896e24cffb0e83373c22d52"
-MAINTAINER="Menno Duursma"
-EMAIL="druiloor@zonnet.nl"
-APPROVED="dsomero"
diff --git a/system/pmem/slack-desc b/system/pmem/slack-desc
deleted file mode 100644
index 68d2229e48..0000000000
--- a/system/pmem/slack-desc
+++ /dev/null
@@ -1,18 +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------------------------------------------------------|
-pmem: pmem (Process Memory Information)
-pmem:
-pmem: Small Linux/Unix command line utility that displays memory
-pmem: information about processes.
-pmem:
-pmem: Pmem was written by Daniel Etzold
-pmem:
-pmem:
-pmem:
-pmem:
-pmem: