aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2022-02-11 03:23:33 -0500
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-12 13:32:50 +0700
commit14445abcc401d48ce3bcea6243560e13423c9160 (patch)
tree6b26cddb7bd00429aa451880c4ac1e8750518897
parentb7d094a32a9f67baf26a920d9279d36560ed2521 (diff)
system/komparator4: Removed (KDE4 app).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--system/komparator4/README6
-rw-r--r--system/komparator4/doinst.sh9
-rw-r--r--system/komparator4/komparator4.SlackBuild112
-rw-r--r--system/komparator4/komparator4.info10
-rw-r--r--system/komparator4/slack-desc19
5 files changed, 0 insertions, 156 deletions
diff --git a/system/komparator4/README b/system/komparator4/README
deleted file mode 100644
index c2dfb674574a..000000000000
--- a/system/komparator4/README
+++ /dev/null
@@ -1,6 +0,0 @@
-Komparator4 is a KDE4 port of Komparator.
-
-Komparator is an application that searches and synchronizes two
-directories. It discovers duplicate, newer or missing files and
-empty folders. It works on local and network / kioslave protocol
-folders (like smb:/, ftp://, media:/).
diff --git a/system/komparator4/doinst.sh b/system/komparator4/doinst.sh
deleted file mode 100644
index 65c7e2eeb9aa..000000000000
--- a/system/komparator4/doinst.sh
+++ /dev/null
@@ -1,9 +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/komparator4/komparator4.SlackBuild b/system/komparator4/komparator4.SlackBuild
deleted file mode 100644
index b8f011fb2a95..000000000000
--- a/system/komparator4/komparator4.SlackBuild
+++ /dev/null
@@ -1,112 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for komparator4
-# Written by Michael Filz <the_emmel@gmx.net>
-
-# Modified by Ryan P.C. McQuen, WA, ryanpcmcquen@member.fsf.org
-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version, with the following exception:
-# the text of the GPL license may be omitted..
-
-# This program is distributed in the hope that it will be useful, but
-# without any warranty; without even the implied warranty of
-# merchantability or fitness for a particular purpose. Compiling,
-# interpreting, executing or merely reading the text of the program
-# may result in lapses of consciousness and/or very being, up to and
-# including the end of all existence and the Universe as we know it.
-# See the GNU General Public License for more details.
-
-# You may have received a copy of the GNU General Public License
-# along with this program (most likely, a file named COPYING). If
-# not, see <http://www.gnu.org/licenses/>.
-
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=komparator4
-VERSION=${VERSION:-1.0}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-SRCPREFIX=116039
-
-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 -march=i486 -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/$SRCPREFIX-$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 {} \;
-
-mkdir -p build
-cd build
- cmake \
- -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DLIB_SUFFIX=${LIBDIRSUFFIX} \
- -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 COPYING INSTALL TODO README ChangeLog \
- $PKG/usr/doc/$PRGNAM-$VERSION
-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/system/komparator4/komparator4.info b/system/komparator4/komparator4.info
deleted file mode 100644
index 56de2cece77c..000000000000
--- a/system/komparator4/komparator4.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="komparator4"
-VERSION="1.0"
-HOMEPAGE="https://www.kde-look.org/p/1127680"
-DOWNLOAD="https://sourceforge.net/projects/slackbuildsdirectlinks/files/komparator4/116039-komparator4-1.0.tar.bz2"
-MD5SUM="d78648dfd45dfec0ec8eb161da98ea73"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Jeremy Hansen"
-EMAIL="jebrhansen+SBo@gmail.com"
diff --git a/system/komparator4/slack-desc b/system/komparator4/slack-desc
deleted file mode 100644
index d77c414cdc90..000000000000
--- a/system/komparator4/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------------------------------------------------------|
-komparator4: komparator4 (compare directories in GUI)
-komparator4:
-komparator4: Komparator is an application that searches and synchronizes two
-komparator4: directories. It discovers duplicate, newer or missing files and empty
-komparator4: folders.
-komparator4: It works on local and network / kioslave protocol folders (like smb:/,
-komparator4: ftp://, media:/).
-komparator4:
-komparator4: It can be found on its project page at
-komparator4: https://www.kde-look.org/p/1127680
-komparator4: