From b68418af1a646de15e851ba7f6d2ff300be8b652 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Sun, 13 Dec 2020 09:14:47 +0100 Subject: network/konversation: Removed (added to Slackware). Signed-off-by: Matteo Bernardini --- network/konversation/README | 7 -- network/konversation/doinst.sh | 10 --- network/konversation/konversation.SlackBuild | 104 --------------------------- network/konversation/konversation.info | 10 --- network/konversation/slack-desc | 19 ----- 5 files changed, 150 deletions(-) delete mode 100644 network/konversation/README delete mode 100644 network/konversation/doinst.sh delete mode 100644 network/konversation/konversation.SlackBuild delete mode 100644 network/konversation/konversation.info delete mode 100644 network/konversation/slack-desc (limited to 'network') diff --git a/network/konversation/README b/network/konversation/README deleted file mode 100644 index bdf71648f9..0000000000 --- a/network/konversation/README +++ /dev/null @@ -1,7 +0,0 @@ -Konversation is an Internet Relay Chat (IRC) client for KDE. - -Konversation features include: -* integration of Konsole (using the KPart technology) -* interaction with KAddressBook * themable nicklist icons -* OSD (On Screen Display) * IPv6 support -* multiserver support * [Secure Sockets Layer|SSL]] diff --git a/network/konversation/doinst.sh b/network/konversation/doinst.sh deleted file mode 100644 index 4a25de5e6f..0000000000 --- a/network/konversation/doinst.sh +++ /dev/null @@ -1,10 +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/network/konversation/konversation.SlackBuild b/network/konversation/konversation.SlackBuild deleted file mode 100644 index 7a93fff79f..0000000000 --- a/network/konversation/konversation.SlackBuild +++ /dev/null @@ -1,104 +0,0 @@ -#!/bin/sh - -# SlackBuild script for konversation - -# Copyright 2007-2014 Michiel van Wessem, Leicester, United Kingdom -# Copyright 2020 Gregory Tourte -# All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# * Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -# "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 COPYRIGHT -# OWNER OR CONTRIBUTORS 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. - -PRGNAM=konversation -VERSION=${VERSION:-1.5.1} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -SRC_VERSION=$(echo $VERSION | tr _ -) - -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-$SRC_VERSION -tar xvf $CWD/$PRGNAM-$SRC_VERSION.tar.xz -cd $PRGNAM-$SRC_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 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 -) || exit 1 - -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* ChangeLog INSTALL README TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir $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/network/konversation/konversation.info b/network/konversation/konversation.info deleted file mode 100644 index 5e4faf679e..0000000000 --- a/network/konversation/konversation.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="konversation" -VERSION="1.5.1" -HOMEPAGE="https://konversation.kde.org" -DOWNLOAD="https://download.kde.org/stable/konversation/1.5.1/src/konversation-1.5.1.tar.xz" -MD5SUM="66731bbfa34e36bd3f7b723c63a492e7" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="ArTourter" -EMAIL="artourter@gmail.com" diff --git a/network/konversation/slack-desc b/network/konversation/slack-desc deleted file mode 100644 index a353822169..0000000000 --- a/network/konversation/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------------------------------------------------------| -konversation: konversation (KDE IRC client) -konversation: -konversation: Konversation is a user-friendly and highly configurable -konversation: Internet Relay Chat client for KDE. -konversation: -konversation: Konversation has support for standard IRC features, SSL server -konversation: support, bookmarking support, multiple identities for different -konversation: servers, theme support, and much more. -konversation: -konversation: Homepage: http://konversation.kde.org/ -konversation: -- cgit v1.2.3