summaryrefslogtreecommitdiff
path: root/community/mlt
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/mlt
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/mlt')
-rw-r--r--community/mlt/PKGBUILD59
-rw-r--r--community/mlt/fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch37
2 files changed, 0 insertions, 96 deletions
diff --git a/community/mlt/PKGBUILD b/community/mlt/PKGBUILD
deleted file mode 100644
index 47abd671d..000000000
--- a/community/mlt/PKGBUILD
+++ /dev/null
@@ -1,59 +0,0 @@
-# $Id: PKGBUILD 94893 2013-08-01 06:55:10Z bpiotrowski $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributor: Fabian Schoelzel <myfirstname.mylastname@googlemail.com>
-# Contributor: funkyou <spamopfer@nickname.berlin.de>
-# Contributor: tardo <tardo@nagi-fanboi.net>
-# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
-
-pkgbase=mlt
-pkgname=('mlt' 'mlt-python-bindings')
-pkgver=0.9.0
-pkgrel=3
-pkgdesc="An open source multimedia framework"
-arch=('i686' 'x86_64')
-url="http://www.mltframework.org"
-license=('GPL')
-makedepends=('sdl_image' 'libsamplerate' 'libdv' 'qt4' 'sox' 'libxml2' 'gtk2' 'ffmpeg'
- 'frei0r-plugins' 'swig' 'python2' "jack" "ladspa")
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
- fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch)
-md5sums=('1cd2d73f3ffe77a43980e99aaa4ea06c'
- '8227e7a1b059b1b16901166d2a508317')
-
-build() {
- # mlt
- cd "$srcdir/mlt-$pkgver"
-
- msg "SSE2=$SSE2"
- ./configure --prefix=/usr --disable-gtk2 \
- --avformat-vdpau \
- --avformat-swscale \
- --enable-gpl --enable-gpl3
- make
-
- # mlt python bindings
- cd "$srcdir/mlt-$pkgver/src/swig/python"
- sed -i 's_path=`which python_path=`which python2_' build
- sed -i 's_`python -c_`python2 -c_' build
- sed -i 's#python-config#python2-config#' build
- ./build
-}
-
-package_mlt() {
- depends=('sdl_image' 'libsamplerate' 'libdv' 'sox' 'libxml2' 'ffmpeg' 'frei0r-plugins')
- optdepends=('jack' 'libexif' 'qt4' 'gtk2' "ladspa")
- conflicts=('mlt++<=0.3.8')
-
- cd "$srcdir/mlt-$pkgver"
- make DESTDIR="$pkgdir" install
-}
-
-package_mlt-python-bindings() {
- depends=('python2' 'mlt')
-
- cd "$srcdir/mlt-$pkgver/src/swig/python"
- mkdir -p "$pkgdir/usr/lib/python2.7/"
- install -m755 mlt.py "$pkgdir/usr/lib/python2.7/"
- install -m755 _mlt.so "$pkgdir/usr/lib/python2.7/"
- install -m755 mlt_wrap.o "$pkgdir/usr/lib/python2.7/"
-}
diff --git a/community/mlt/fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch b/community/mlt/fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch
deleted file mode 100644
index eb81f33f4..000000000
--- a/community/mlt/fix-segmentation-fault-at-exit-by-calling-av_lockmgr.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From ef749d7b526f0762a00a369ea35b5b12c18142fb Mon Sep 17 00:00:00 2001
-From: Nicolas Boichat <nicolas@boichat.ch>
-Date: Wed, 20 Mar 2013 16:50:56 +0800
-Subject: [PATCH] Fix Segmentation fault at exit by calling
- av_lockmgr_register( NULL );
-
----
- src/modules/avformat/factory.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-diff --git a/src/modules/avformat/factory.c b/src/modules/avformat/factory.c
-index ddf05fe..a273537 100644
---- a/src/modules/avformat/factory.c
-+++ b/src/modules/avformat/factory.c
-@@ -83,6 +83,11 @@ static int avformat_lockmgr(void **mutex, enum AVLockOp op)
- return 0;
- }
-
-+static void avformat_exit( )
-+{
-+ av_lockmgr_register( NULL );
-+}
-+
- static void avformat_init( )
- {
- // Initialise avformat if necessary
-@@ -98,6 +103,7 @@ static void avformat_init( )
- avformat_network_init();
- #endif
- av_log_set_level( mlt_log_get_level() );
-+ atexit(avformat_exit);
- }
- }
-
---
-1.8.1.5
-