From 00b9d8632696f8c8b15fcec0549b66e46d3d0210 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Wed, 9 Dec 2020 18:35:59 +0100 Subject: multimedia/kdenlive: Removed (added to Slackware). Signed-off-by: Matteo Bernardini --- multimedia/kdenlive/README | 18 ----- multimedia/kdenlive/doinst.sh | 19 ----- multimedia/kdenlive/kdenlive.SlackBuild | 131 -------------------------------- multimedia/kdenlive/kdenlive.info | 10 --- multimedia/kdenlive/slack-desc | 19 ----- 5 files changed, 197 deletions(-) delete mode 100644 multimedia/kdenlive/README delete mode 100644 multimedia/kdenlive/doinst.sh delete mode 100644 multimedia/kdenlive/kdenlive.SlackBuild delete mode 100644 multimedia/kdenlive/kdenlive.info delete mode 100644 multimedia/kdenlive/slack-desc (limited to 'multimedia') diff --git a/multimedia/kdenlive/README b/multimedia/kdenlive/README deleted file mode 100644 index 067bb89104..0000000000 --- a/multimedia/kdenlive/README +++ /dev/null @@ -1,18 +0,0 @@ -kdenlive (KDE Non Linear Video Editor) - -Kdenlive is an intuitive and powerful non-linear multi-track video -editor which supports DV, AVCHD and HDV editing, using many of the latest -video technologies. - -Currently under development and using the MLT video framework, -Kdenlive provides dual video monitors, a multi-track timeline and clip -list. Features include customizable layout support, basic effects and -transitions, in-program access to online resources from Freesound, -Archive.org, and Open Clip Art. Kdenlive also features integrated basic -DVD authoring capability. - -If you do not have the KDE desktop installed, you will need at least: -kdelibs, kdebase - -NOTE: -This requires recordmydesktop from Slackware's extra directory. diff --git a/multimedia/kdenlive/doinst.sh b/multimedia/kdenlive/doinst.sh deleted file mode 100644 index 6c9ac6b5e3..0000000000 --- a/multimedia/kdenlive/doinst.sh +++ /dev/null @@ -1,19 +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 - -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 - -if [ -e usr/share/icons/oxygen/icon-theme.cache ]; then - if [ -x /usr/bin/gtk-update-icon-cache ]; then - /usr/bin/gtk-update-icon-cache -f usr/share/icons/oxygen >/dev/null 2>&1 - fi -fi diff --git a/multimedia/kdenlive/kdenlive.SlackBuild b/multimedia/kdenlive/kdenlive.SlackBuild deleted file mode 100644 index 9304f04db7..0000000000 --- a/multimedia/kdenlive/kdenlive.SlackBuild +++ /dev/null @@ -1,131 +0,0 @@ -#!/bin/sh - -# Slackware build script for kdenlive - -# Copyright 2014 Tak Ooishi, Alberta, Canada -# Original SBo script by stormtracknole 8/5/2009 -# 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. - -# CHANGELOG -# --------- -# 2014 MAY 22 -# SBo maintainer change: Tak Ooishi -# * Add license to build script as per SBo requirement -# * Updated to version 0.9.8 released on 2014 MAY 14 -# * Upstream tarball filename format changed again -# * Workaround for CMakeList.txt error at build time -# * Updated slack-desc and README -# * INSTALL no longer in upstream tarball -# * Add ChangeLog to installed documentation -# * Minor changes for consistency with SBo cmake-template -# +---------------------------------------+ -# stormtracknole stormtracknole@gmail.com -# 8/5/2009 -# +---------------------------------------+ -# May 16, 2011 -# *Upgraded to version 0.8. -# *qjson added as a new dependency. -# +---------------------------------------+ -# Dec 14, 2011 -# *Upgraded to version 0.8.2 -# +---------------------------------------+ -# Jul 2, 2012 -# *Upgraded to version 0.9.2 -# *Hosting location of the src file -# changed. -# *Upstream is now tarring files as -# bz2 instead of gz. -# +---------------------------------------+ - -PRGNAM=kdenlive -VERSION=${VERSION:-0.9.10} -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 -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -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 {} \; - -mkdir build -cd build -cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_VERBOSE_MAKEFILE=ON \ - .. -make -make install DESTDIR=$PKG -cd .. - -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 AUTHORS COPYING README ChangeLog $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.${PKGTYPE:-tgz} diff --git a/multimedia/kdenlive/kdenlive.info b/multimedia/kdenlive/kdenlive.info deleted file mode 100644 index f95ca6275f..0000000000 --- a/multimedia/kdenlive/kdenlive.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="kdenlive" -VERSION="0.9.10" -HOMEPAGE="http://www.kdenlive.org/" -DOWNLOAD="http://download.kde.org/stable/kdenlive/0.9.10/src/kdenlive-0.9.10.tar.bz2" -MD5SUM="40d7ee8e388cb084f5eb1ad1596a14b2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="amrnb dvdauthor dvgrab faac faad2 gsm lame mlt schroedinger x264 xvidcore" -MAINTAINER="Edward W. Koenig" -EMAIL="kingbeowulf@gmail.com" diff --git a/multimedia/kdenlive/slack-desc b/multimedia/kdenlive/slack-desc deleted file mode 100644 index 37f69e544e..0000000000 --- a/multimedia/kdenlive/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------------------------------------------------------| -kdenlive: kdenlive (KDE Non Linear Video Editor) -kdenlive: -kdenlive: Using the MLT video framework. It is currently under development -kdenlive: Kdenlive provides dual video monitors, a multi-track timeline and -kdenlive: clip list. Other features include customizable layout support, basic -kdenlive: effects and transition, direct import from online resources such as -kdenlive: Freesound, Archive.org, and Open Clip Art. Integrated DVD authoring. -kdenlive: -kdenlive: http://kdenlive.sourceforge.net -kdenlive: -kdenlive: -- cgit v1.2.3