summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2017-04-15 17:30:50 +0200
committer Robby Workman2021-04-22 02:54:25 +0200
commita3d7afde5ddc11e4fd5b3138227125c6716703d3 (patch)
treed8111c877c8608e530fbeec964db12ef8505eb6d
parent017eafd8cb7641c69d6395ae166e9e664c28468f (diff)
downloadslackbuilds-a3d7afde5ddc11e4fd5b3138227125c6716703d3.tar.gz
network/licq: Removed (No maintainer).
-rw-r--r--network/licq/README11
-rw-r--r--network/licq/doinst.sh3
-rw-r--r--network/licq/licq.SlackBuild119
-rw-r--r--network/licq/licq.info10
-rw-r--r--network/licq/slack-desc19
5 files changed, 0 insertions, 162 deletions
diff --git a/network/licq/README b/network/licq/README
deleted file mode 100644
index a887fc2b43..0000000000
--- a/network/licq/README
+++ /dev/null
@@ -1,11 +0,0 @@
-Licq is an instant messaging client for *nix Systems. It is a full
-featured ICQ client, although Jabber support has been added recently
-as well. It features a plugin structure that allows for different
-front ends, protocols and more.
-
-By default the qt4-gui, console, auto-reply and aosd plugins are
-built. This requires libaosd as well as cdk and can be overridden by
-setting the PLUGINS environment variable to a space seperated list of
-auto-reply, forwarder, osd, rms, aosd, console, jabber, msn, qt4-gui.
-
-Optional dependencies are libxosd for the osd and gloox for jabber.
diff --git a/network/licq/doinst.sh b/network/licq/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/network/licq/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/network/licq/licq.SlackBuild b/network/licq/licq.SlackBuild
deleted file mode 100644
index b3acf64cf6..0000000000
--- a/network/licq/licq.SlackBuild
+++ /dev/null
@@ -1,119 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for licq
-# Written by Michael Filz <the_emmel@gmx.net>
-
-# Ryan P.C. McQuen | Everett, 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/>.
-
-PRGNAM=licq
-VERSION=${VERSION:-1.8.2}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PLUGINS=${PLUGINS:-"aosd auto-reply forwarder icq jabber msn \
- osd qt4-gui rms"}
-
-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}
-
-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/$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 VERBOSE=1
-make install DESTDIR=$PKG
-
-cd ../plugins
-
-for PLUG in $PLUGINS
-do
- cd $PLUG
- mkdir -p build
- cd build
- cmake \
- -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS -I$PKG/usr/include" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_MODULE_PATH=$PKG/usr/share/licq/cmake \
- ..
- make VERBOSE=1
- make install DESTDIR=$PKG
- cd ../..
-done
-
-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 -ar INSTALL LICENSE README* doc $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:-tgz}
diff --git a/network/licq/licq.info b/network/licq/licq.info
deleted file mode 100644
index 7c5063268a..0000000000
--- a/network/licq/licq.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="licq"
-VERSION="1.8.2"
-HOMEPAGE="http://www.licq.org"
-DOWNLOAD="http://downloads.sourceforge.net/licq/licq-1.8.2.tar.bz2"
-MD5SUM="46af2bc95865ee61a103d27812fe6e6a"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="cdk gloox libaosd xosd"
-MAINTAINER="orphaned - no maintainer"
-EMAIL="nobody@nowhere"
diff --git a/network/licq/slack-desc b/network/licq/slack-desc
deleted file mode 100644
index 6e4f073cda..0000000000
--- a/network/licq/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------------------------------------------------------|
-licq: licq (ICQ instant messenger)
-licq:
-licq: Licq is an instant messaging client for *nix Systems. It is a full
-licq: featured ICQ client, although Jabber support has been added recently
-licq: as well. It features a plugin structure that allows for different
-licq: front ends, protocols and more.
-licq:
-licq:
-licq:
-licq: For more information see the Licq home page at
-licq: http://www.licq.org