From c0c7bb01c9d784d103b61c5eeb7a0f2cd40f1a0a Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Thu, 4 Oct 2012 21:49:22 +0200 Subject: network/centerim: Removed. As per maintainer request. Signed-off-by: Heinz Wiesinger --- network/centerim/README | 6 --- network/centerim/centerim.SlackBuild | 100 ----------------------------------- network/centerim/centerim.info | 10 ---- network/centerim/gcc47.patch | 11 ---- network/centerim/slack-desc | 19 ------- 5 files changed, 146 deletions(-) delete mode 100644 network/centerim/README delete mode 100644 network/centerim/centerim.SlackBuild delete mode 100644 network/centerim/centerim.info delete mode 100644 network/centerim/gcc47.patch delete mode 100644 network/centerim/slack-desc (limited to 'network') diff --git a/network/centerim/README b/network/centerim/README deleted file mode 100644 index 3f636e1529..0000000000 --- a/network/centerim/README +++ /dev/null @@ -1,6 +0,0 @@ -CenterIM is a multi-protocol command-line instant messenger. -It supports most major protocols such as MSN, ICQ, Yahoo and Jabber. - -CenterIM was forked from the CenterICQ project, and includes many patches -previously submitted, including the hefty patch to resolve segfaults when -connecting to MSN. diff --git a/network/centerim/centerim.SlackBuild b/network/centerim/centerim.SlackBuild deleted file mode 100644 index 51677e0e79..0000000000 --- a/network/centerim/centerim.SlackBuild +++ /dev/null @@ -1,100 +0,0 @@ -#!/bin/sh - -# Slackware build script for centerim - -# Copyright 2006 Martin Lefebvre -# 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. - -PRGNAM=centerim -VERSION=4.22.10 -BUILD=${BUILD:-2} -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} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=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.gz -cd $PRGNAM-$VERSION -chown -R root:root . -chmod -R a-s,u+w,go+r-w . - -# Fix for gcc-4.7.x -patch -p1 < $CWD/gcc47.patch - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --with-ssl \ - --build=$ARCH-slackware-linux - -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 - -gzip -9 $PKG/usr/man/man?/* - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING ChangeLog FAQ INSTALL NEWS POLICY README THANKS TODO \ - $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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/centerim/centerim.info b/network/centerim/centerim.info deleted file mode 100644 index 9c7ddd5b38..0000000000 --- a/network/centerim/centerim.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="centerim" -VERSION="4.22.10" -HOMEPAGE="http://www.centerim.org" -DOWNLOAD="http://www.centerim.org/download/releases/centerim-4.22.10.tar.gz" -MD5SUM="7565c3c8cac98a4e2d8524076a44676f" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Christopher Forrest" -EMAIL="cforrest@gmx.net" diff --git a/network/centerim/gcc47.patch b/network/centerim/gcc47.patch deleted file mode 100644 index 191956c11b..0000000000 --- a/network/centerim/gcc47.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur centerim-4.22.10.orig/libicq2000/libicq2000/sigslot.h centerim-4.22.10/libicq2000/libicq2000/sigslot.h ---- centerim-4.22.10.orig/libicq2000/libicq2000/sigslot.h 2010-10-26 19:19:06.000000000 +0200 -+++ centerim-4.22.10/libicq2000/libicq2000/sigslot.h 2012-09-15 21:46:10.469007313 +0200 -@@ -84,6 +84,7 @@ - - #include - #include -+#include - - #if defined(SIGSLOT_PURE_ISO) || (!defined(WIN32) && !defined(SIGSLOT_USE_POSIX_THREADS)) - # define _SIGSLOT_SINGLE_THREADED diff --git a/network/centerim/slack-desc b/network/centerim/slack-desc deleted file mode 100644 index c224cb5679..0000000000 --- a/network/centerim/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 ':'. - - |-----handy-ruler------------------------------------------------------| -centerim: CenterIM (console based instant messaging client) -centerim: -centerim: CenterIM is a multi-protocol command-line instant messenger. -centerim: It supports most major protocols such as MSN, ICQ, Yahoo and -centerim: Jabber. -centerim: -centerim: -centerim: -centerim: -centerim: -centerim: -- cgit v1.2.3