From e7fb9a184cd74950f5099b496c7e10a9f84e8005 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Sat, 9 Nov 2013 09:33:43 +0100 Subject: multimedia/LiVES: Removed (not compatible with the newer ffmpeg). Signed-off-by: Matteo Bernardini Signed-off-by: Robby Workman --- multimedia/LiVES/LiVES.SlackBuild | 82 --------------------------------------- multimedia/LiVES/LiVES.info | 10 ----- multimedia/LiVES/LiVES.patch | 11 ------ multimedia/LiVES/README | 4 -- multimedia/LiVES/doinst.sh | 4 -- multimedia/LiVES/slack-desc | 19 --------- 6 files changed, 130 deletions(-) delete mode 100644 multimedia/LiVES/LiVES.SlackBuild delete mode 100644 multimedia/LiVES/LiVES.info delete mode 100644 multimedia/LiVES/LiVES.patch delete mode 100644 multimedia/LiVES/README delete mode 100644 multimedia/LiVES/doinst.sh delete mode 100644 multimedia/LiVES/slack-desc diff --git a/multimedia/LiVES/LiVES.SlackBuild b/multimedia/LiVES/LiVES.SlackBuild deleted file mode 100644 index 08c5bd5cfc..0000000000 --- a/multimedia/LiVES/LiVES.SlackBuild +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/sh - -# Slackware build script for LiVES -# -# this SlackBuild maintained by Klaatu at hackerpublicradio.org -# -# but all the real work was done by rworkman and the good folk -# at slackbuilds.org - -PRGNAM=LiVES -VERSION=${VERSION:-r1566} -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="-02" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* -mv lives-$VERSION $PRGNAM-$VERSION -cd $PRGNAM-$VERSION -chown -R root:root . -chmod -R a-s,u+w,g-w+r,o-w+r . - -sh autogen.sh || true - -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --program-prefix="" \ - --build=$ARCH-slackware-linux - -make docdir=/usr/doc/$PRGNAM-$VERSION -make install-strip docdir=/usr/doc/$PRGNAM-$VERSION DESTDIR=$PKG - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING INSTALL NEWS $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 - -# Fix a broken symlink. -cd $PKG/usr/bin -rm -f lives -ln -sf lives-exe lives - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/multimedia/LiVES/LiVES.info b/multimedia/LiVES/LiVES.info deleted file mode 100644 index 9ba2b4e8cf..0000000000 --- a/multimedia/LiVES/LiVES.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="LiVES" -VERSION="r1566" -HOMEPAGE="http://lives.sourceforge.net" -DOWNLOAD="http://ponce.cc/slackware/sources/repo/LiVES-r1566.tar.xz" -MD5SUM="96ee9524ea350ea33ca4f6efafc5fb02" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="jack-audio-connection-kit mjpegtools transcode" -MAINTAINER="klaatu" -EMAIL="klaatu@hackerpublicradio.org" diff --git a/multimedia/LiVES/LiVES.patch b/multimedia/LiVES/LiVES.patch deleted file mode 100644 index a6f269edc4..0000000000 --- a/multimedia/LiVES/LiVES.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- trunk/src/callbacks.c 2012/03/23 01:30:32 1462 -+++ trunk/src/callbacks.c 2012/03/30 22:41:23 1465 -@@ -3999,7 +3999,7 @@ - lives_alarm_clear(alarm_handle); - frames_written=mainw->jackd->frames_written; - seek_pos=mainw->jackd->seek_pos; -- audio_ticks=mainw->pulsed->audio_ticks; -+ audio_ticks=mainw->jackd->audio_ticks; - - jack_message.command=ASERVER_CMD_FILE_CLOSE; - jack_message.data=NULL; \ No newline at end of file diff --git a/multimedia/LiVES/README b/multimedia/LiVES/README deleted file mode 100644 index cdc9099421..0000000000 --- a/multimedia/LiVES/README +++ /dev/null @@ -1,4 +0,0 @@ -LiVES is a frame and sample accurate realtime and non-linear video editor. -Features include keyboard-based editing, a dedicated clip editor, JACK -support, realtime effects, support for most major multimedia formats, the -ability to be used for live VJ'ing, and much more. diff --git a/multimedia/LiVES/doinst.sh b/multimedia/LiVES/doinst.sh deleted file mode 100644 index 392c12adb9..0000000000 --- a/multimedia/LiVES/doinst.sh +++ /dev/null @@ -1,4 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications -fi - diff --git a/multimedia/LiVES/slack-desc b/multimedia/LiVES/slack-desc deleted file mode 100644 index 0eb5364f9d..0000000000 --- a/multimedia/LiVES/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------------------------------------------------------| -LiVES: LiVES (a Video Editing System) -LiVES: -LiVES: LiVES is a frame and sample accurate realtime and non-linear -LiVES: video editor. Features include keyboard-based editing, a dedicated -LiVES: clip editor, JACK support, realtime effects, support for most major -LiVES: multimedia formats. -LiVES: -LiVES: For more information, see http://lives.sourceforge.net -LiVES: -LiVES: -LiVES: -- cgit v1.2.3