From 37f4dcfbedd62220f899f8e739b82b9bef43adb4 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Fri, 15 May 2009 10:22:55 -0700 Subject: [PATCH] Remove the old mlt++ dir. Signed-off-by: Dan Dennedy --- mlt++/.gitignore | 1 - mlt++/Makefile | 9 --------- mlt++/configure | 54 ------------------------------------------------------ 3 files changed, 0 insertions(+), 64 deletions(-) delete mode 100644 mlt++/.gitignore delete mode 100644 mlt++/Makefile delete mode 100755 mlt++/configure diff --git a/mlt++/.gitignore b/mlt++/.gitignore deleted file mode 100644 index 5761abc..0000000 --- a/mlt++/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.o diff --git a/mlt++/Makefile b/mlt++/Makefile deleted file mode 100644 index 7d49ea2..0000000 --- a/mlt++/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -include config.mak - -all clean distclean install uninstall: - $(MAKE) DESTDIR=$(DESTDIR) -C src $@ - -dist: - [ -d "mlt++-$(version)" ] && rm -rf "mlt++-$(version)" || echo -n - svn export http://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt++ "mlt++-$(version)" - tar -cvzf "mlt++-$(version).tar.gz" "mlt++-$(version)" diff --git a/mlt++/configure b/mlt++/configure deleted file mode 100755 index 8b099b3..0000000 --- a/mlt++/configure +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh - -pkg-config mlt-framework 2>/dev/null -[ $? != 0 ] && echo "MLT not installed - aborting" && exit 1 - -# Determine default prefix -prefix=`pkg-config --variable=prefix mlt-framework` -[ "$prefix" = "" ] && echo "Can't locate MLT's prefix - please reconfigure MLT." && exit 1 - -# Default the libdir -libdir="" - -# Allow override from command line -for i in "$@" -do - case $i in - --prefix=* ) prefix="${i#--prefix=}" ;; - --libdir=* ) libdir="${i#--libdir=}" ;; - esac -done - -# Determine the libdir if it's not specified in the args -[ "$libdir" = "" ] && libdir=$prefix/lib - -# Sanity check -[ ! -d "$prefix" ] && echo "Invalid prefix $prefix - aborting" && exit 1 - -echo "version=`pkg-config --modversion mlt-framework`" > config.mak -echo "soversion=1" >> config.mak -echo "prefix=$prefix" >> config.mak -echo "libdir=$libdir" >> config.mak - -targetos=$(uname -s) -echo "targetos=$targetos" >> config.mak - -WARNINGS="-W -Wwrite-strings -Wcast-qual -Wpointer-arith -Wcast-align -Wredundant-decls" - -case $targetos in - Darwin) - echo LIBSUF=.dylib - echo "CXXFLAGS+=-D__DARWIN__ -Wall -fPIC `pkg-config --cflags mlt-framework`" - echo "LIBFLAGS=-dynamiclib -single_module" - echo "LDFLAGS+=`pkg-config --libs mlt-framework` `pkg-config mlt-miracle --libs` `pkg-config mlt-valerie --libs`" - ;; - Linux|FreeBSD) - echo LIBSUF=.so - echo "CXXFLAGS+=-pthread -Wall $WARNINGS -fPIC `pkg-config --cflags mlt-framework`" - echo "LIBFLAGS=-shared" - echo "LDFLAGS+=`pkg-config --libs mlt-framework` `pkg-config mlt-miracle --libs`" - ;; -esac >> config.mak - -echo "MLT++ configured - will be installed in $prefix." - -- 1.7.4.4