multimedia/kdenlive: Updated for version 0.9.8 + new maintainer.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Tak Ooishi 2014-05-23 09:14:55 +07:00 committed by Willy Sudiarto Raharjo
parent 90d956fac1
commit dcdc96075b
5 changed files with 72 additions and 31 deletions

View File

@ -1,8 +1,10 @@
Kdenlive is an intuitive and powerful multi-track video editor including Kdenlive is an intuitive and powerful non-linear multi-track video editor which
most recent video technologies. supports DV, AVCHD and HDV editing, using many of the latest video technologies.
If you do not have the KDE desktop installed, you will need at least Currently under development and using the MLT video framework, Kdenlive provides dual
these two packages: 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.
kdelibs If you do not have KDE desktop installed, you will need at least: kdelibs, kdebase
kdebase

View File

@ -17,4 +17,3 @@ if [ -e usr/share/icons/oxygen/icon-theme.cache ]; then
/usr/bin/gtk-update-icon-cache usr/share/icons/oxygen >/dev/null 2>&1 /usr/bin/gtk-update-icon-cache usr/share/icons/oxygen >/dev/null 2>&1
fi fi
fi fi

View File

@ -2,6 +2,45 @@
# Slackware build script for kdenlive # Slackware build script for kdenlive
# Copyright 2014 Tak Ooishi, Alberta, Canada <rootisfun (at) gadgetinventor com>
# Original SBo script by stormtracknole <stormtracknole (at) gmail com> 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.
# NOTES
# -----
# This package can be successfully built on Slackware 13.37/14.0 with the
# addition of qjson (available on SlackBuilds.org) as an additional
# dependency.
# CHANGELOG
# ---------
# 2014 MAY 22
# SBo maintainer change: Tak Ooishi <rootisfun (at) gadgetinventor com>
# * 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 # stormtracknole stormtracknole@gmail.com
# 8/5/2009 # 8/5/2009
@ -22,7 +61,7 @@
# +---------------------------------------+ # +---------------------------------------+
PRGNAM=kdenlive PRGNAM=kdenlive
VERSION=${VERSION:-0.9.6} VERSION=${VERSION:-0.9.8}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
@ -59,33 +98,34 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT mkdir -p $TMP $PKG $OUTPUT
cd $TMP cd $TMP
rm -rf $PRGNAM-$VERSION rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 tar xvf $CWD/$PRGNAM-$VERSION-1.tar.bz2
cd $PRGNAM-$VERSION cd $PRGNAM-$VERSION
chown -R root:root . chown -R root:root .
find -L . \ find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-exec chmod 755 {} \; -o \ -o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-exec chmod 644 {} \; -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
cmake \ # Workaround for CMakeList.txt error at build time on some versions of Slackware
-DCMAKE_INSTALL_PREFIX=/usr \ sed -i.bak -e '69d' src/CMakeLists.txt
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ cmake \
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
-DCMAKE_VERBOSE_MAKEFILE=ON \ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
. -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_VERBOSE_MAKEFILE=ON \
.
make
make install DESTDIR=$PKG
make find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
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 | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find $PKG/usr/man -type f -exec gzip -9 {} \; 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 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING INSTALL README $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 cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install mkdir -p $PKG/install

View File

@ -1,10 +1,10 @@
PRGNAM="kdenlive" PRGNAM="kdenlive"
VERSION="0.9.6" VERSION="0.9.8"
HOMEPAGE="http://www.kdenlive.org/" HOMEPAGE="http://www.kdenlive.org/"
DOWNLOAD="http://download.kde.org/stable/kdenlive/0.9.6/src/kdenlive-0.9.6.tar.bz2" DOWNLOAD="http://download.kde.org/stable/kdenlive/0.9.8/src/kdenlive-0.9.8-1.tar.bz2"
MD5SUM="3bd3a511b860490acc367e7c9d7ffa43" MD5SUM="6c28868598eecd878b9d041bb3900615"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="amrnb dvdauthor dvgrab faac faad2 gsm lame mlt recordmydesktop schroedinger x264 xvidcore" REQUIRES="amrnb dvdauthor dvgrab faac faad2 gsm lame mlt recordmydesktop schroedinger x264 xvidcore"
MAINTAINER="stormtracknole" MAINTAINER="Tak Ooishi"
EMAIL="stormtracknole@gmail.com" EMAIL="rootisfun@gadgetinventor.com"

View File

@ -11,8 +11,8 @@ kdenlive:
kdenlive: Using the MLT video framework. It is currently under development kdenlive: Using the MLT video framework. It is currently under development
kdenlive: Kdenlive provides dual video monitors, a multi-track timeline and kdenlive: Kdenlive provides dual video monitors, a multi-track timeline and
kdenlive: clip list. Other features include customizable layout support, basic kdenlive: clip list. Other features include customizable layout support, basic
kdenlive: effects and transition. kdenlive: effects and transition, direct import from online resources such as
kdenlive: kdenlive: Freesound, Archive.org, and Open Clip Art. Integrated DVD authoring.
kdenlive: kdenlive:
kdenlive: http://kdenlive.sourceforge.net kdenlive: http://kdenlive.sourceforge.net
kdenlive: kdenlive: