diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-12 01:41:03 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-03-06 09:30:22 +0700 |
commit | bee9f5abc9d5f532426b845e1c114bb2533def57 (patch) | |
tree | 2d0820d8652b8022430b2731cf6b4dda9e012802 /libraries | |
parent | 95008b5649feb6a0244b7852739ec66b9b2d0034 (diff) | |
download | slackbuilds-bee9f5abc9d5f532426b845e1c114bb2533def57.tar.gz |
libraries/libeXosip2: Removed (per maintainer's request).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libeXosip2/README | 5 | ||||
-rw-r--r-- | libraries/libeXosip2/libeXosip2.SlackBuild | 96 | ||||
-rw-r--r-- | libraries/libeXosip2/libeXosip2.info | 10 | ||||
-rw-r--r-- | libraries/libeXosip2/slack-desc | 19 |
4 files changed, 0 insertions, 130 deletions
diff --git a/libraries/libeXosip2/README b/libraries/libeXosip2/README deleted file mode 100644 index 5356ca6660..0000000000 --- a/libraries/libeXosip2/README +++ /dev/null @@ -1,5 +0,0 @@ -eXosip is a library that hides the complexity of using the SIP -protocol for mutlimedia session establishement. This protocol is -mainly to be used by VoIP telephony applications (endpoints or -conference server) but might be also usefull for any application -that wish to establish sessions like multiplayer games. diff --git a/libraries/libeXosip2/libeXosip2.SlackBuild b/libraries/libeXosip2/libeXosip2.SlackBuild deleted file mode 100644 index 8a21174bf6..0000000000 --- a/libraries/libeXosip2/libeXosip2.SlackBuild +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh - -# Slackware build script for libeXosip2 -# Copyright (c) 2011-2012 Eugene Wissner <belka.ew@gmail.com> -# All rights reserved. -# -# Permission to use, copy, modify, and distribute this software for any purpose -# with or without fee is hereby granted, provided that the above copyright -# notice and this permission notice appear in all copies. -# -# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 -# AUTHORS AND COPYRIGHT HOLDERS AND THEIR 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=libeXosip2 -VERSION=${VERSION:-4.1.0} -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} - -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 - -DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS \ - README $CWD/$PRGNAM.SlackBuild" - -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 . -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 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --disable-static \ - --enable-openssl \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -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 $DOCS $PKG/usr/doc/$PRGNAM-$VERSION -chown -R root:root $PKG/usr/doc -chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/* - -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/libraries/libeXosip2/libeXosip2.info b/libraries/libeXosip2/libeXosip2.info deleted file mode 100644 index 93f31cc3f1..0000000000 --- a/libraries/libeXosip2/libeXosip2.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="libeXosip2" -VERSION="4.1.0" -HOMEPAGE="http://savannah.nongnu.org/projects/exosip" -DOWNLOAD="http://download.savannah.gnu.org/releases/exosip/libeXosip2-4.1.0.tar.gz" -MD5SUM="62de8bf34dbf803bc531ad5b1adcd028" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="libosip2" -MAINTAINER="Eugene Wissner" -EMAIL="belka.ew@gmail.com" diff --git a/libraries/libeXosip2/slack-desc b/libraries/libeXosip2/slack-desc deleted file mode 100644 index 15fa6a95ca..0000000000 --- a/libraries/libeXosip2/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------------------------------------------------------| -libeXosip2: libeXosip2 (The eXtended osip library) -libeXosip2: -libeXosip2: eXosip is a library that hides the complexity of using the SIP -libeXosip2: protocol for mutlimedia session establishement. This protocol is -libeXosip2: mainly to be used by VoIP telephony applications (endpoints or -libeXosip2: conference server) but might be also usefull for any application -libeXosip2: that wish to establish sessions like multiplayer games. -libeXosip2: -libeXosip2: Homepage: http://savannah.nongnu.org/projects/exosip/ -libeXosip2: -libeXosip2: |