summaryrefslogtreecommitdiffstats
path: root/multimedia/dvdrip
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2010-05-21 13:13:02 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-23 23:21:40 -0500
commite4282e9f23e1b0af33c7a233ad1913429c1fb488 (patch)
tree89ac59bd75c713a95b3a017dd6e8218130fe2964 /multimedia/dvdrip
parent03545f42a39e148b835061ac9b408d5a50797674 (diff)
downloadslackbuilds-e4282e9f23e1b0af33c7a233ad1913429c1fb488.tar.gz
slackbuilds-e4282e9f23e1b0af33c7a233ad1913429c1fb488.tar.xz
multimedia/dvdrip: Removed (missing dependency)
This requires subtitleripper, which was removed due to build failure...
Diffstat (limited to 'multimedia/dvdrip')
-rw-r--r--multimedia/dvdrip/README11
-rw-r--r--multimedia/dvdrip/doinst.sh10
-rw-r--r--multimedia/dvdrip/dvdrip.SlackBuild76
-rw-r--r--multimedia/dvdrip/dvdrip.desktop10
-rw-r--r--multimedia/dvdrip/dvdrip.info10
-rw-r--r--multimedia/dvdrip/dvdrip.pngbin3713 -> 0 bytes
-rw-r--r--multimedia/dvdrip/slack-desc19
7 files changed, 0 insertions, 136 deletions
diff --git a/multimedia/dvdrip/README b/multimedia/dvdrip/README
deleted file mode 100644
index 49cca1ecbc..0000000000
--- a/multimedia/dvdrip/README
+++ /dev/null
@@ -1,11 +0,0 @@
-dvd::rip is a full featured DVD copy program written in Perl. It
-provides an easy to use but feature-rich Gtk+ GUI to control almost
-all aspects of the ripping and transcoding process. It uses the
-widely known video processing swissknife transcode and many other
-Open Source tools.
-
-This requires transcode, perl-extutils-depends, perl-extutils-pkgconfig,
-perl-glib, perl-cairo, perl-gtk2, perl-event, and perl-libintl.
-
-ffmpeg, lsdvd, ogmtools, dvdxchap, mjpegtools, xvid4conf, subtitleripper,
-and fping are optional dependencies available at SlackBuilds.org.
diff --git a/multimedia/dvdrip/doinst.sh b/multimedia/dvdrip/doinst.sh
deleted file mode 100644
index 1f8ff67ded..0000000000
--- a/multimedia/dvdrip/doinst.sh
+++ /dev/null
@@ -1,10 +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 usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
diff --git a/multimedia/dvdrip/dvdrip.SlackBuild b/multimedia/dvdrip/dvdrip.SlackBuild
deleted file mode 100644
index b06cf1cfc0..0000000000
--- a/multimedia/dvdrip/dvdrip.SlackBuild
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for dvdrip
-
-# Written by Luis Henrique <lmello.009@gmail.com>
-
-PRGNAM=dvdrip
-VERSION=${VERSION:-0.98.11_01}
-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 # Exit on most errors
-
-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 . \
- \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-perl Makefile.PL
-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
-
-mv $PKG/usr/share/man $PKG/usr && rm -rf $PKG/usr/share
-
-( 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
-)
-
-( cd $PKG
- find . -name perllocal.pod \
- -o -name ".packlist" \
- -o -name "*.bs" \
- | xargs rm -f
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a Changes Changes.0.46 COPYRIGHT Credits MANIFEST README TODO \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/usr/share/{applications,pixmaps}
-cat $CWD/dvdrip.desktop > $PKG/usr/share/applications/dvdrip.desktop
-cat $CWD/dvdrip.png > $PKG/usr/share/pixmaps/dvdrip.png
-
-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/dvdrip/dvdrip.desktop b/multimedia/dvdrip/dvdrip.desktop
deleted file mode 100644
index 1c991a67fb..0000000000
--- a/multimedia/dvdrip/dvdrip.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Encoding=UTF-8
-Name=dvd::rip
-GenericName=DVD copy program
-Comment=A full featured DVD copy program
-Type=Application
-Exec=dvdrip
-Icon=dvdrip
-Categories=AudioVideo;Video;
diff --git a/multimedia/dvdrip/dvdrip.info b/multimedia/dvdrip/dvdrip.info
deleted file mode 100644
index 2056462ba1..0000000000
--- a/multimedia/dvdrip/dvdrip.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="dvdrip"
-VERSION="0.98.11_01"
-HOMEPAGE="http://www.exit1.org/dvdrip"
-DOWNLOAD="http://www.exit1.org/dvdrip/dist/dvdrip-0.98.11_01.tar.gz"
-MD5SUM="b139eaf78b99874c0bddacb522523878"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Luis Henrique"
-EMAIL="lmello.009@gmail.com"
-APPROVED="dsomero"
diff --git a/multimedia/dvdrip/dvdrip.png b/multimedia/dvdrip/dvdrip.png
deleted file mode 100644
index 771299f8ef..0000000000
--- a/multimedia/dvdrip/dvdrip.png
+++ /dev/null
Binary files differ
diff --git a/multimedia/dvdrip/slack-desc b/multimedia/dvdrip/slack-desc
deleted file mode 100644
index 33e15d84e8..0000000000
--- a/multimedia/dvdrip/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-------------------------------------------------------|
-dvdrip: dvd::rip (DVD copy program)
-dvdrip:
-dvdrip: dvd::rip is a full featured DVD copy program written in Perl. It
-dvdrip: provides an easy to use but feature-rich Gtk+ GUI to control almost
-dvdrip: all aspects of the ripping and transcoding process. It uses the
-dvdrip: widely known video processing swissknife transcode and many other
-dvdrip: Open Source tools. dvd::rip itself is licensed under
-dvdrip: GPL / Perl Artistic License.
-dvdrip:
-dvdrip: Homepage: http://www.exit1.org/dvdrip
-dvdrip: