diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-10 21:38:42 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-12 00:29:44 +0700 |
commit | 61e2bc95a3b37a1fda53740157746086ac06d065 (patch) | |
tree | ffc57d9747b172f0d26390dcfc52112cf43d1758 /desktop | |
parent | 03c1b6140bba7e4ec2d329285b3eebfeb64f5194 (diff) | |
download | slackbuilds-61e2bc95a3b37a1fda53740157746086ac06d065.tar.gz slackbuilds-61e2bc95a3b37a1fda53740157746086ac06d065.tar.xz |
desktop/yawp: Removed (no more kde4).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/yawp/README | 7 | ||||
-rw-r--r-- | desktop/yawp/doinst.sh | 4 | ||||
-rw-r--r-- | desktop/yawp/slack-desc | 19 | ||||
-rw-r--r-- | desktop/yawp/yawp.SlackBuild | 104 | ||||
-rw-r--r-- | desktop/yawp/yawp.info | 10 |
5 files changed, 0 insertions, 144 deletions
diff --git a/desktop/yawp/README b/desktop/yawp/README deleted file mode 100644 index 9be672bad0..0000000000 --- a/desktop/yawp/README +++ /dev/null @@ -1,7 +0,0 @@ -yaWP (Yet Another Weather Plasmoid) is for the KDE 4.x panel that shows -the current weather and forecast. This SlackBuild includes the base -plasmoid. Additional themes are available at KDE-Look. - -yaWP works with several different weather sources. You can configure -it to show up to 5 days weather forecast and display the current -satellite image. It is also possible to keep track of multiple cities. diff --git a/desktop/yawp/doinst.sh b/desktop/yawp/doinst.sh deleted file mode 100644 index 6d65032dc7..0000000000 --- a/desktop/yawp/doinst.sh +++ /dev/null @@ -1,4 +0,0 @@ -if [ -x /usr/bin/kbuildsycoca4 ]; then - /usr/bin/kbuildsycoca4 -fi - diff --git a/desktop/yawp/slack-desc b/desktop/yawp/slack-desc deleted file mode 100644 index 9f0d048292..0000000000 --- a/desktop/yawp/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -yawp: yawp (Yet Another Weather Plasmoid) -yawp: -yawp: yaWP (Yet Another Weather Plasmoid) is for the KDE4 panel -yawp: and shows the current weather and forecast. -yawp: -yawp: https://store.kde.org/p/999199/ -yawp: -yawp: -yawp: -yawp: -yawp: diff --git a/desktop/yawp/yawp.SlackBuild b/desktop/yawp/yawp.SlackBuild deleted file mode 100644 index d911ee4aa6..0000000000 --- a/desktop/yawp/yawp.SlackBuild +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/bash - -# Slackware build script for yaWP (Yet Another Weather Plasmoid) - -# Written by Stu Miller <slackbuilds@go4it2day.com> Centennial, CO, USA -# -# 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. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=yawp -VERSION=${VERSION:-0.4.5} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -mtune=i686 -march=i486" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -mtune=i686 -march=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 -rm -rf $TMP/$PRGNAM-$VERSION -cd $TMP -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -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 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -cmake . \ --DCMAKE_INSTALL_PREFIX="/usr" - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - CHANGELOG COPYRIGHT LICENSE* README TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION -find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; -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 diff --git a/desktop/yawp/yawp.info b/desktop/yawp/yawp.info deleted file mode 100644 index a8bf5b4d11..0000000000 --- a/desktop/yawp/yawp.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="yawp" -VERSION="0.4.5" -HOMEPAGE="https://store.kde.org/p/999199/" -DOWNLOAD="http://downloads.sourceforge.net/yawp/yawp-0.4.5.tar.bz2" -MD5SUM="4ceb65c370107409fc07c430bd5a9822" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Stu Miller" -EMAIL="slackbuilds@go4it2day.com" |