diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2020-12-09 19:52:06 +0100 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-18 00:10:36 -0500 |
commit | ae1868bf18020a11848a9667f8f15b62947484ce (patch) | |
tree | 84a1f1cf5f1dafddeb8f32ed54a55e1e0429465d /system/yakuake | |
parent | d2accce31a4a9a05a9ca5b6444dcf625935bf0e8 (diff) |
system/yakuake: Removed (added to Slackware).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/yakuake')
-rw-r--r-- | system/yakuake/README | 9 | ||||
-rw-r--r-- | system/yakuake/doinst.sh | 11 | ||||
-rw-r--r-- | system/yakuake/slack-desc | 19 | ||||
-rw-r--r-- | system/yakuake/yakuake.SlackBuild | 109 | ||||
-rw-r--r-- | system/yakuake/yakuake.info | 10 |
5 files changed, 0 insertions, 158 deletions
diff --git a/system/yakuake/README b/system/yakuake/README deleted file mode 100644 index be602331b3a9f..0000000000000 --- 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 7c2b4d5242346..0000000000000 --- 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 59f88d8cf7263..0000000000000 --- 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 39a8686e796ad..0000000000000 --- 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 b39cbafe0674d..0000000000000 --- 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" |