From da7418d62fb1e5282221b66e84821e04b6667bf9 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Tue, 11 Apr 2017 09:57:20 +0200 Subject: system/qps: Updated for version 20160713_7e679db. Signed-off-by: Matteo Bernardini --- system/qps/README | 2 -- system/qps/qps.SlackBuild | 82 ++++++++++++++++++++++++----------------------- system/qps/qps.info | 10 +++--- system/qps/slack-desc | 2 +- 4 files changed, 48 insertions(+), 48 deletions(-) (limited to 'system') diff --git a/system/qps/README b/system/qps/README index d87c58bdf0..b1d5490525 100644 --- a/system/qps/README +++ b/system/qps/README @@ -1,5 +1,3 @@ -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 diff --git a/system/qps/qps.SlackBuild b/system/qps/qps.SlackBuild index caa966a2f1..42ff6009f2 100644 --- a/system/qps/qps.SlackBuild +++ b/system/qps/qps.SlackBuild @@ -1,16 +1,35 @@ #!/bin/sh # Slackware build script for qps -# Written by Matteo Bernardini + +# Copyright 2011-2017 Matteo Bernardini , Pisa, Italy +# 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=qps -VERSION=${VERSION:-1.10.16} +VERSION=${VERSION:-20160713_7e679db} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -21,8 +40,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -35,8 +54,6 @@ else LIBDIRSUFFIX="" fi -DOCS="CHANGES COPYING README_INSTALL" - set -e rm -rf $PKG @@ -47,48 +64,33 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -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 +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_BUILD_TYPE=Release .. + make + install -D -m 0755 src/$PRGNAM $PKG/usr/bin/$PRGNAM + install -D -m 0644 src/$PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM.desktop + install -D -m 0644 ../icon/icon.xpm $PKG/usr/share/pixmaps/$PRGNAM.xpm +cd .. 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/man/man1 +gzip -9c qps.1 > $PKG/usr/man/man1/$PRGNAM.1.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING README.md $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 < $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 diff --git a/system/qps/qps.info b/system/qps/qps.info index a76a7a096c..fcc8604235 100644 --- a/system/qps/qps.info +++ b/system/qps/qps.info @@ -1,10 +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" +VERSION="20160713_7e679db" +HOMEPAGE="https://github.com/QtDesktop/qps" +DOWNLOAD="http://ponce.cc/slackware/sources/repo/qps-20160713_7e679db.tar.xz" +MD5SUM="d85ea5af2c57c28f93e9b22d8228e506" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="" +REQUIRES="qt5" MAINTAINER="Matteo Bernardini" EMAIL="ponce@slackbuilds.org" diff --git a/system/qps/slack-desc b/system/qps/slack-desc index cb9209f40e..ed435493ff 100644 --- a/system/qps/slack-desc +++ b/system/qps/slack-desc @@ -13,7 +13,7 @@ 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: homepage: https://github.com/QtDesktop/qps qps: qps: qps: -- cgit v1.2.3