summaryrefslogtreecommitdiffstats
path: root/multimedia/kino
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/kino')
-rw-r--r--multimedia/kino/README11
-rw-r--r--multimedia/kino/doinst.sh8
-rw-r--r--multimedia/kino/kino.SlackBuild107
-rw-r--r--multimedia/kino/kino.info10
-rw-r--r--multimedia/kino/slack-desc19
5 files changed, 0 insertions, 155 deletions
diff --git a/multimedia/kino/README b/multimedia/kino/README
deleted file mode 100644
index 72789a4cd4..0000000000
--- a/multimedia/kino/README
+++ /dev/null
@@ -1,11 +0,0 @@
-Kino is a non-linear DV editor for GNU/Linux.
-
-It features excellent integration with IEEE 1394 for capture, VTR
-control, and recording back to the camera. It captures video to disk
-in raw DV or AVI format in both type-1 DV and type-2 DV (separate
-audio stream) encodings.
-
-Kino does not support other video file formats or encodings, but it
-can import them by transcoding with FFmpeg and optionally MEncoder.
-
-This requires libavc1394, libiec61883, libdv, ffmpeg, and libquicktime.
diff --git a/multimedia/kino/doinst.sh b/multimedia/kino/doinst.sh
deleted file mode 100644
index e4e6459838..0000000000
--- a/multimedia/kino/doinst.sh
+++ /dev/null
@@ -1,8 +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 [ -x /usr/bin/update-mime-database ]; then
- /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
-fi
-
diff --git a/multimedia/kino/kino.SlackBuild b/multimedia/kino/kino.SlackBuild
deleted file mode 100644
index 7f1160248d..0000000000
--- a/multimedia/kino/kino.SlackBuild
+++ /dev/null
@@ -1,107 +0,0 @@
-#!/bin/sh
-#
-# Pierre Cazenave (LQ.org pwc101)
-# revision date 11/11/2007 (Armistice Day)
-# re-revised for 12.2 and new udev locations on 23/12/2008 (day before
-# Christmas Eve!).
-# Updated for version 1.3.4 17/06/2010 Thanks for Heinz Wiesinger for the
-# nudge.
-#
-# I have set the -enable-local-ffmpeg option since I can't figure
-# out how to get the ffmpeg subdirectory configure script to be
-# passed the correct install directory for the creation of the
-# package. I figured this wasn't too much of an issue, since
-# there's a ffmpeg SlackBuild script already.
-#
-# If you can figure out how to get it to compile so that ffmpeg
-# obeys the variables we set, please modify this accordinly.
-
-# Modified by Robby Workman <rworkman@slackbuilds.org> for better
-# consistency with other scripts in our repository
-# Re the note above, I wouldn't bother -- better to use ffmpeg
-# that's installed on the system.
-
-PRGNAM=kino
-VERSION=1.3.4
-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
-
-set -eu
-
-rm -rf $TMP/$PRGNAM-$VERSION $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib$LIBDIRSUFFIX \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --disable-static \
- --enable-quicktime \
- --disable-local-ffmpeg
-
-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
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-
-# Give the udev rules a number prefix to be consistent with other rules files
-# and move to the new location for 12.2; then remove $PKG/etc directory
-mkdir -p $PKG/lib/udev/rules.d
-mv $PKG/etc/udev/rules.d/kino.rules $PKG/lib/udev/rules.d/96-kino.rules
-rm -rf $PKG/etc
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ChangeLog AUTHORS BUGS COPYING INSTALL NEWS README TODO help/ \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
-
-# Fix incorrect ownership/permissions on help directory (from sshd to root).
-chown -R root:root $PKG/usr/share/kino/help
-find $PKG/usr/share/kino/help/en -type d -exec chmod 0755 {} \;
-find $PKG/usr/share/kino/help/en -type f -exec chmod 0644 {} \;
-
-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:-tgz}
diff --git a/multimedia/kino/kino.info b/multimedia/kino/kino.info
deleted file mode 100644
index 4608a7dbeb..0000000000
--- a/multimedia/kino/kino.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="kino"
-VERSION="1.3.4"
-HOMEPAGE="http://www.kinodv.org/"
-DOWNLOAD="http://downloads.sourceforge.net/kino/kino-1.3.4.tar.gz"
-MD5SUM="52f8ce690e45a089e3edc6c7af61a05c"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Pierre Cazenave"
-EMAIL="pwcazenave@gmail.com"
-APPROVED="rworkman"
diff --git a/multimedia/kino/slack-desc b/multimedia/kino/slack-desc
deleted file mode 100644
index 31c6b95c1c..0000000000
--- a/multimedia/kino/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------------------------------------------------------|
-kino: Kino (a non-linear DV editor for GNU/Linux)
-kino:
-kino: It features excellent integration with IEEE 1394 for capture, VTR
-kino: control, and recording back to the camera. It captures video to disk
-kino: in raw DV or AVI format in both type-1 DV and type-2 DV (separate
-kino: audio stream) encodings.
-kino: Kino does not support other video file formats or encodings, but it
-kino: can import them by transcoding with FFmpeg and optionally MEncoder.
-kino:
-kino: http://www.kinodv.org/
-kino: