aboutsummaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
authorWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-06-02 06:15:32 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-06-02 06:15:32 +0700
commit8bf816cf125d9b8b004325688f4e19472f046eaf (patch)
tree86169ed4eb3fd976ec40c5227832eda57d3e7cf6 /network
parente769f0ad4a7e853bacdccffc057390af6be686ee (diff)
network/linphone: Removed (FTBFS and no maintainer).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/linphone/README20
-rw-r--r--network/linphone/doinst.sh9
-rw-r--r--network/linphone/linphone.SlackBuild172
-rw-r--r--network/linphone/linphone.info14
-rw-r--r--network/linphone/slack-desc19
5 files changed, 0 insertions, 234 deletions
diff --git a/network/linphone/README b/network/linphone/README
deleted file mode 100644
index 8f47312d146fc..0000000000000
--- a/network/linphone/README
+++ /dev/null
@@ -1,20 +0,0 @@
-linphone (SIP video-phone)
-
-Linphone is an audio and video Internet phone with GTK+ and
-console interfaces. It uses the SIP protocol, and is compatible
-with most SIP clients and gateways. It uses various audio and
-video codecs such as Opus, Speex, GSM, G711, ilbc, Theora, H263-1998,
-MPEG4, VP8 and snow.
-
-Video support is enabled by default, but can be disabled and thus
-negating the need for ffmpeg. To disable support for video just pass
-VIDEO=no to the script.
-
-UPNP support is enabled by default, but can be disabled and thus
-negating the need for libupnp. To disable support for UPNP just pass
-UPNP=no to the script.
-
-Truespeech is disabled by default, but can be enabled.
-To enable support for Truespeech just pass TRUESPEECH=yes to the script.
-
-For h264 codec support, install either msx264 or openh264 SlackBuild.
diff --git a/network/linphone/doinst.sh b/network/linphone/doinst.sh
deleted file mode 100644
index 65c7e2eeb9aa5..0000000000000
--- a/network/linphone/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/network/linphone/linphone.SlackBuild b/network/linphone/linphone.SlackBuild
deleted file mode 100644
index f950205123e38..0000000000000
--- a/network/linphone/linphone.SlackBuild
+++ /dev/null
@@ -1,172 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for linphone
-# Was written by adev and modified by Eugene Wissner
-# Now maintained by Euan Thoms <euan at potensol dot com>
-
-# Copyright 2014 Euan Thoms United Kingdom
-# 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.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=linphone
-VERSION=${VERSION:-3.12.0}
-BUILD=${BUILD:-2}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-MOD1NAME=ortp
-MOD1VERSION=1.0.2
-MOD1SRCDIRNAME=${MOD1NAME}-${MOD1VERSION}-0
-MOD1DIRNAME=oRTP
-
-MOD2NAME=mediastreamer
-MOD2VERSION=2.16.1
-MOD2SRCDIRNAME=${MOD2NAME}-${MOD2VERSION}
-MOD2DIRNAME=mediastreamer2
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- 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" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -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="ABOUT-NLS AUTHORS BUGS COPYING ChangeLog \
- NEWS README.md TODO $CWD/$PRGNAM.SlackBuild"
-
-# enable support for video by default, requires ffmpeg
-if [ "${VIDEO:-yes}" = "yes" ]; then
- do_video="--enable-video"
-else
- do_video="--disable-video"
-fi
-
-# enable support for UPNP by default, requires libupnp
-if [ "${UPNP:-yes}" = "yes" ]; then
- do_upnp="--enable-upnp"
-else
- do_upnp="--disable-upnp"
-fi
-
-# disable support for truespeech by default
-if [ "${TRUESPEECH:-no}" = "yes" ]; then
- do_truespeech="--enable-truespeech"
-else
- do_truespeech="--disable-truespeech"
-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
-tar xvf $CWD/$MOD1NAME-$MOD1VERSION.tar.gz
-mv $MOD1SRCDIRNAME $MOD1DIRNAME
-tar xvf $CWD/$MOD2NAME-$MOD2VERSION.tar.gz
-mv $MOD2SRCDIRNAME $MOD2DIRNAME
-
-# Some patching for silly build issues
-sed -i 's|ms_message("Mediastreamer2 factory " MEDIASTREAMER_VERSION " (git: " MS2_GIT_VERSION ") initialized.");|ms_message("Mediastreamer2 factory " MEDIASTREAMER_VERSION " initialized.");|' $MOD2DIRNAME/src/base/msfactory.c
-touch coreapi/gitversion.h
-
-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 {} \;
-
-./autogen.sh
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --docdir=/usr/doc \
- --mandir=/usr/man \
- --disable-strict \
- --disable-static \
- --disable-tests \
- --disable-tutorials \
- --enable-ipv6 \
- --enable-alsa \
- --enable-pulseaudio \
- --enable-ldap \
- --enable-zrtp \
- --with-included-gettext \
- $do_truespeech \
- $do_video \
- $do_upnp \
- --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
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
-chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
-chmod 0644 $PKG/usr/doc/$PRGNAM-$VERSION/*
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-rm -f $PKG/usr/lib*/*.la
-
-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/network/linphone/linphone.info b/network/linphone/linphone.info
deleted file mode 100644
index 57eafbe7e90e6..0000000000000
--- a/network/linphone/linphone.info
+++ /dev/null
@@ -1,14 +0,0 @@
-PRGNAM="linphone"
-VERSION="3.12.0"
-HOMEPAGE="https://www.linphone.org/"
-DOWNLOAD="https://download.linphone.org/releases/old/sources/linphone/linphone-3.12.0.tar.gz \
- https://download.linphone.org/releases/old/sources/ortp/ortp-1.0.2.tar.gz \
- https://download.linphone.org/releases/old/sources/mediastreamer/mediastreamer-2.16.1.tar.gz"
-MD5SUM="8292dbaa0a5d0a448dcbbee125e947e4 \
- 82629e99befa578341e0bdc225924135 \
- 15b8b129a922180855d04d58cdd08d43"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="belle-sip bzrtp libsrtp libupnp-legacy"
-MAINTAINER="Euan Thoms"
-EMAIL="euan at potensol dot com"
diff --git a/network/linphone/slack-desc b/network/linphone/slack-desc
deleted file mode 100644
index 71a34e142e8d2..0000000000000
--- a/network/linphone/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------------------------------------------------------|
-linphone: linphone (SIP video-phone)
-linphone:
-linphone: Linphone is an audio and video Internet phone with GTK+ and
-linphone: console interfaces. It uses the SIP protocol, and is compatible
-linphone: with most SIP clients and gateways. It uses various audio and
-linphone: video codecs such as Opus, Speex, GSM, G711, ilbc, Theora, H263-1998,
-linphone: MPEG4, VP8, H264 and snow.
-linphone:
-linphone: Homepage: https://www.linphone.org
-linphone:
-linphone: