mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/qps: Added (qt process viewer)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
5030ca303c
commit
aa792ca342
5 changed files with 135 additions and 0 deletions
6
system/qps/README
Normal file
6
system/qps/README
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
qps (qt process viewer)
|
||||||
|
|
||||||
|
qps is a monitor that displays the status of the processes currently
|
||||||
|
in existence, much like top(1) or ps(1).
|
||||||
|
The user interface uses the Qt toolkit, and most operations should be
|
||||||
|
fairly intuitive.
|
3
system/qps/doinst.sh
Normal file
3
system/qps/doinst.sh
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
if [ -x /usr/bin/update-desktop-database ]; then
|
||||||
|
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||||
|
fi
|
97
system/qps/qps.SlackBuild
Normal file
97
system/qps/qps.SlackBuild
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for qps
|
||||||
|
# Written by ponce <matteo.bernardini@gmail.com>
|
||||||
|
|
||||||
|
PRGNAM=qps
|
||||||
|
VERSION=${VERSION:-1.10.16}
|
||||||
|
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
|
||||||
|
|
||||||
|
DOCS="CHANGES COPYING README_INSTALL"
|
||||||
|
|
||||||
|
set -e # Exit on most errors
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
|
||||||
|
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 {} \;
|
||||||
|
|
||||||
|
# remove an option for qt-4.3.x and fix some installation paths
|
||||||
|
sed -i "s|.*qdbus.*||" qps.pro
|
||||||
|
sed -i "s|/usr/local|/usr|" qps.pro
|
||||||
|
sed -i "s|/usr/share|/usr|" qps.pro
|
||||||
|
qmake
|
||||||
|
# respect our $CFLAGS
|
||||||
|
sed -i "s|-O2|${SLKCFLAGS}|" Makefile
|
||||||
|
make
|
||||||
|
make install INSTALL_ROOT=$PKG
|
||||||
|
|
||||||
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
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 $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
|
# install an icon from the sources
|
||||||
|
install -D -m 0644 icon/icon.xpm $PKG/usr/share/pixmaps/$PRGNAM.xpm
|
||||||
|
# add a desktop entry
|
||||||
|
mkdir -p $PKG/usr/share/applications
|
||||||
|
cat <<EOF > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Name=QPS
|
||||||
|
GenericName=Qt Process Viewe
|
||||||
|
Comment=Qps is a process viewer written in Qt.
|
||||||
|
Icon=qps
|
||||||
|
Exec=qps
|
||||||
|
Terminal=false
|
||||||
|
Categories=Qt;System;
|
||||||
|
StartupNotify=true
|
||||||
|
EOF
|
||||||
|
|
||||||
|
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}
|
10
system/qps/qps.info
Normal file
10
system/qps/qps.info
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
PRGNAM="qps"
|
||||||
|
VERSION="1.10.16"
|
||||||
|
HOMEPAGE="http://kldp.net/projects/qps"
|
||||||
|
DOWNLOAD="http://ponce.cc/slackware/sources/repo/qps-1.10.16.tar.bz2"
|
||||||
|
MD5SUM="dc3396749ad9254fd60ca84b5c0b16b9"
|
||||||
|
DOWNLOAD_x86_64=""
|
||||||
|
MD5SUM_x86_64=""
|
||||||
|
MAINTAINER="ponce"
|
||||||
|
EMAIL="matteo.bernardini@gmail.com"
|
||||||
|
APPROVED="Erik Hanson"
|
19
system/qps/slack-desc
Normal file
19
system/qps/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# 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 ':' except on otherwise blank lines.
|
||||||
|
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
qps: qps (qt process viewer)
|
||||||
|
qps:
|
||||||
|
qps: qps is a monitor that displays the status of the processes currently
|
||||||
|
qps: in existence, much like top(1) or ps(1).
|
||||||
|
qps: The user interface uses the Qt toolkit, and most operations should be
|
||||||
|
qps: fairly intuitive.
|
||||||
|
qps:
|
||||||
|
qps: homepage: http://kldp.net/projects/qps
|
||||||
|
qps:
|
||||||
|
qps:
|
||||||
|
qps:
|
Loading…
Reference in a new issue