summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-12 11:47:55 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-12 11:47:55 +0200
commita7b41953a67d6ff1cac07fff9afc1cfb43d03956 (patch)
treebddaa515c0cc71fa7313f52ede5460f0add0d39a /multimedia
parent7fd114dfe4f63b20309e7cea131280ace834f2e9 (diff)
downloadslackbuilds-a7b41953a67d6ff1cac07fff9afc1cfb43d03956.tar.gz
slackbuilds-a7b41953a67d6ff1cac07fff9afc1cfb43d03956.tar.xz
multimedia/ekiga: Removed from 12.2 repository
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/ekiga/README10
-rw-r--r--multimedia/ekiga/configure_fix.diff13
-rw-r--r--multimedia/ekiga/doinst.sh5
-rw-r--r--multimedia/ekiga/ekiga.SlackBuild78
-rw-r--r--multimedia/ekiga/ekiga.info8
-rw-r--r--multimedia/ekiga/slack-desc19
6 files changed, 0 insertions, 133 deletions
diff --git a/multimedia/ekiga/README b/multimedia/ekiga/README
deleted file mode 100644
index a44bcf400a..0000000000
--- a/multimedia/ekiga/README
+++ /dev/null
@@ -1,10 +0,0 @@
-Ekiga (formely known as GnomeMeeting) is an open source VoIP and video
-conferencing application. Ekiga uses both the H.323 and SIP protocols.
-It supports many audio and video codecs, and is interoperable with other
-SIP compliant software and also with Microsoft NetMeeting.
-
-This package will be built without gnome (nor avahi) support. This will
-break the Help button (probably because it requires the gnome help system)
-but it is not otherwise very useful.
-
-This requires pwlib and opal (both available at SlackBuilds.org).
diff --git a/multimedia/ekiga/configure_fix.diff b/multimedia/ekiga/configure_fix.diff
deleted file mode 100644
index b82cbcd6f2..0000000000
--- a/multimedia/ekiga/configure_fix.diff
+++ /dev/null
@@ -1,13 +0,0 @@
-*** configure.orig 2008-06-19 01:04:37.000000000 +0200
---- configure 2008-06-19 01:05:22.000000000 +0200
-***************
-*** 2970,2975 ****
---- 2970,2977 ----
- else
- ENABLE_SK_TRUE="#"
- ENABLE_SK_FALSE=""
-+ HAVE_GNOME_DOC_UTILS_TRUE='#'
-+ HAVE_GNOME_DOC_UTILS_FALSE=
- fi
-
-
diff --git a/multimedia/ekiga/doinst.sh b/multimedia/ekiga/doinst.sh
deleted file mode 100644
index 22d4849bce..0000000000
--- a/multimedia/ekiga/doinst.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-
-if [ -x usr/bin/update-desktop-database ]; then
- usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
-fi
-
diff --git a/multimedia/ekiga/ekiga.SlackBuild b/multimedia/ekiga/ekiga.SlackBuild
deleted file mode 100644
index f041d477c0..0000000000
--- a/multimedia/ekiga/ekiga.SlackBuild
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Ekiga
-
-# Written by Olivier Esser (olive001@tele2allin.be), based on
-# the template available at slackbuilds.org (public domain)
-# Modified by Robby Workman <rworkman@slackbuilds.org>
-
-PRGNAM=ekiga
-VERSION=2.0.12
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-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 u+w,go+r-w,a-s .
-
-# Fix a bug in the configure script that does not complete when
-# Gnome is disabled. This is a ugly hack; the proper way
-# would be to fix configure.in, but I am uncomfortable with autoconf.
-patch -p0 < $CWD/configure_fix.diff
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --disable-gnome \
- --disable-avahi \
- --disable-static \
- --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
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog FAQ INSTALL LICENSE \
- MAINTAINERS NEWS README 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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/multimedia/ekiga/ekiga.info b/multimedia/ekiga/ekiga.info
deleted file mode 100644
index a968003bac..0000000000
--- a/multimedia/ekiga/ekiga.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="ekiga"
-VERSION="2.0.12"
-HOMEPAGE="http://ekiga.org"
-DOWNLOAD="http://www.ekiga.org/admin/downloads/latest/sources/sources/ekiga-2.0.12.tar.gz"
-MD5SUM="4df27d7715233984013fb9728db15ce8"
-MAINTAINER="Olivier Esser"
-EMAIL="olive001@tele2allin.be"
-APPROVED="rworkman"
diff --git a/multimedia/ekiga/slack-desc b/multimedia/ekiga/slack-desc
deleted file mode 100644
index 02e1dbf865..0000000000
--- a/multimedia/ekiga/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------------------------------------------------------|
-ekiga: Ekiga (VoIP and video conferencing application)
-ekiga:
-ekiga: Ekiga (formely known as GnomeMeeting) is an open source VoIP and
-ekiga: video conferencing application. Ekiga uses both the H.323 and SIP
-ekiga: protocols.
-ekiga:
-ekiga: It supports many audio and video codecs, and is interoperable with
-ekiga: other SIP compliant software and also with Microsoft NetMeeting.
-ekiga:
-ekiga:
-ekiga: