summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Matteo Bernardini2022-02-08 19:57:57 +0100
committer Willy Sudiarto Raharjo2022-02-09 03:36:03 +0100
commitd9e3f20eb1e6bfa2baf104c4c373d6fdef79eada (patch)
tree9b8ac94193c04beea16d71ec9500c7009ba4ccc8 /desktop
parent607e8d0c3b8ca764aaa8cc75543f9395e5836e13 (diff)
downloadslackbuilds-d9e3f20eb1e6bfa2baf104c4c373d6fdef79eada.tar.gz
desktop/plasma-applet-daisy: 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/plasma-applet-daisy/README11
-rw-r--r--desktop/plasma-applet-daisy/doinst.sh4
-rw-r--r--desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild89
-rw-r--r--desktop/plasma-applet-daisy/plasma-applet-daisy.info10
-rw-r--r--desktop/plasma-applet-daisy/slack-desc19
5 files changed, 0 insertions, 133 deletions
diff --git a/desktop/plasma-applet-daisy/README b/desktop/plasma-applet-daisy/README
deleted file mode 100644
index 8874189c15..0000000000
--- a/desktop/plasma-applet-daisy/README
+++ /dev/null
@@ -1,11 +0,0 @@
-Daisy is a free open-source widget for Plasma/KDE.
-
-Main features:
-- Three types of roles: circular dock, media controller and linear dock
-- Can dock in any screen position and be used in Horizontal or Vertical
- mode (linear dock role)
-- Configuration tools to access all configurable options
-- Launchers can be edited with a simple right-click
-- Hybrid launchers to launch applications and control running tasks
-- Plugins to provide information and execute several tasks
-- Various backgrounds available
diff --git a/desktop/plasma-applet-daisy/doinst.sh b/desktop/plasma-applet-daisy/doinst.sh
deleted file mode 100644
index 6d65032dc7..0000000000
--- a/desktop/plasma-applet-daisy/doinst.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-if [ -x /usr/bin/kbuildsycoca4 ]; then
- /usr/bin/kbuildsycoca4
-fi
-
diff --git a/desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild b/desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild
deleted file mode 100644
index 968b02e154..0000000000
--- a/desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/bash
-# Build script for plasma-applet-daisy
-
-# Written by Eugene Kommunist Bolotov <lordinferius@gmail.com>
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=plasma-applet-daisy
-VERSION=${VERSION:-0.0.4.26}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- 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" = "i586" ]; then
- SLKCFLAGS="-O2 -mtune=i686 -march=i586"
- 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.gz
-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 {} \;
-
-mkdir -p build
-cd build
- cmake \
- -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DLIB_SUFFIX=${LIBDIRSUFFIX} \
- -DMAN_INSTALL_DIR=/usr/man \
- -DCMAKE_BUILD_TYPE=Release ..
- make
- make install DESTDIR=$PKG
-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
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS CHANGELOG COPYING INSTALL 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/plasma-applet-daisy/plasma-applet-daisy.info b/desktop/plasma-applet-daisy/plasma-applet-daisy.info
deleted file mode 100644
index 00543b87d9..0000000000
--- a/desktop/plasma-applet-daisy/plasma-applet-daisy.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="plasma-applet-daisy"
-VERSION="0.0.4.26"
-HOMEPAGE="http://cdlszm.org/"
-DOWNLOAD="http://cdlszm.org/downloads/plasma-applet-daisy-0.0.4.26.tar.gz"
-MD5SUM="43c1ae617a0216e0780187db8e628cdf"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Eugene Kommunist Bolotov"
-EMAIL="lordinferius@gmail.com"
diff --git a/desktop/plasma-applet-daisy/slack-desc b/desktop/plasma-applet-daisy/slack-desc
deleted file mode 100644
index 0bb317fe78..0000000000
--- a/desktop/plasma-applet-daisy/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------------------------------------------------------|
-plasma-applet-daisy: plasma-applet-daisy (simple application launcher for Plasma)
-plasma-applet-daisy:
-plasma-applet-daisy: Daisy is a free open-source widget for Plasma/KDE released under the
-plasma-applet-daisy: GNU General Public License version 3.
-plasma-applet-daisy:
-plasma-applet-daisy: Homepage: http://cdlszm.org/
-plasma-applet-daisy:
-plasma-applet-daisy:
-plasma-applet-daisy:
-plasma-applet-daisy:
-plasma-applet-daisy: