summaryrefslogtreecommitdiffstats
path: root/system/yakuake
diff options
context:
space:
mode:
author Matteo Bernardini2021-03-27 10:25:10 +0100
committer Matteo Bernardini2021-03-27 10:25:10 +0100
commit2fba1c878b57d3afa631b9369518be5d21221c09 (patch)
treedce412a05dfeb7fbb53d24c934a732c3b522ad0f /system/yakuake
parentf4c325577c3399f98410adb164155c38bb8ed86a (diff)
downloadslackbuilds-current-20210327.1.tar.gz
20210327.1 global branch merge.current-20210327.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/yakuake')
-rw-r--r--system/yakuake/README9
-rw-r--r--system/yakuake/doinst.sh11
-rw-r--r--system/yakuake/slack-desc19
-rw-r--r--system/yakuake/yakuake.SlackBuild109
-rw-r--r--system/yakuake/yakuake.info10
5 files changed, 0 insertions, 158 deletions
diff --git a/system/yakuake/README b/system/yakuake/README
deleted file mode 100644
index be602331b3..0000000000
--- a/system/yakuake/README
+++ /dev/null
@@ -1,9 +0,0 @@
-Yakuake (Yet Another Kuake) is a KDE terminal emulator. Its design was
-inspired from consoles in computer games such as Quake which slide down from
-the top of the screen when a key is pressed, and slide back up when the key
-is pressed again.
-
-Running Yakuake is faster than launching a new terminal with a keyboard
-shortcut because the program is already loaded into memory, and so can be
-useful to people who frequently find themselves opening and closing
-terminals for odd tasks.
diff --git a/system/yakuake/doinst.sh b/system/yakuake/doinst.sh
deleted file mode 100644
index 7c2b4d5242..0000000000
--- a/system/yakuake/doinst.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
-
diff --git a/system/yakuake/slack-desc b/system/yakuake/slack-desc
deleted file mode 100644
index 59f88d8cf7..0000000000
--- a/system/yakuake/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------------------------------------------------------|
-yakuake: yakuake (Yet Another Kuake, KDE terminal emulator)
-yakuake:
-yakuake: Yakuake is a KDE terminal emulator. Its design was inspired from
-yakuake: consoles in computer games such as Quake which slide down from the top
-yakuake: of the screen when a key is pressed, and slide back up when the key is
-yakuake: pressed again. Its features include:
-yakuake: - Smoothly rolls down from the top of your screen
-yakuake: - Tabbed interface, Skinnable
-yakuake: - Configurable dimensions and animation speed
-yakuake: - Sophisticated DCOP interface
-yakuake:
diff --git a/system/yakuake/yakuake.SlackBuild b/system/yakuake/yakuake.SlackBuild
deleted file mode 100644
index 39a8686e79..0000000000
--- a/system/yakuake/yakuake.SlackBuild
+++ /dev/null
@@ -1,109 +0,0 @@
-#!/bin/sh
-
-# SlackBuild script for yakuake
-
-# Copyright 2012-2017 Matthew "mfillpot" Fillpot
-# Copyright 2018 Greg Tourte <artourter@gmail.com>
-# 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.
-
-# Slackware build script for yakuake
-# Originally Written by Steffen Schwebel (steffen.schwebel at web.de)
-
-# Modified by SlackBuilds.org
-
-PRGNAM=yakuake
-VERSION=${VERSION:-2.9.9}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ $ARCH = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -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
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
-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 build
-( cd build
-cmake \
- -DCMAKE_C_FLAGS="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DLIB_SUFFIX="$LIBDIRSUFFIX" \
- -DCMAKE_BUILD_TYPE="Release" \
- -Wno-dev \
- ..
-
-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 AUTHORS COPYING* KDE4FAQ NEWS README TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-find $PKG/usr/doc -type f -exec chmod 0644 {} \;
-
-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}
diff --git a/system/yakuake/yakuake.info b/system/yakuake/yakuake.info
deleted file mode 100644
index b39cbafe06..0000000000
--- a/system/yakuake/yakuake.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="yakuake"
-VERSION="2.9.9"
-HOMEPAGE="https://yakuake.kde.org"
-DOWNLOAD="https://download.kde.org/stable/yakuake/2.9.9/src/yakuake-2.9.9.tar.xz"
-MD5SUM="ef97612710b28d62e43a58bed49cbead"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="ArTourter"
-EMAIL="artourter@gmail.com"