| 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
|---|
| 2 | # $Id$ |
|---|
| 3 | |
|---|
| 4 | PortSystem 1.0 |
|---|
| 5 | |
|---|
| 6 | name mlt |
|---|
| 7 | version 20090212 |
|---|
| 8 | categories multimedia |
|---|
| 9 | maintainers jmpoure \ |
|---|
| 10 | poure.com:jm |
|---|
| 11 | description Open source multimedia framework - core libraries |
|---|
| 12 | long_description MLT is an open source multimedia framework, designed and developed for \ |
|---|
| 13 | television broadcasting. It provides a toolkit for broadcasters, video \ |
|---|
| 14 | editors, media players, transcoders, web streamers and many more types of \ |
|---|
| 15 | applications. The functionality of the system is provided via an assortment \ |
|---|
| 16 | of ready to use tools, xml authoring components, and an extendible plug-in \ |
|---|
| 17 | based API. \ |
|---|
| 18 | \ |
|---|
| 19 | This package contains the files necessary for running applications that use \ |
|---|
| 20 | the MLT multimedia framework. |
|---|
| 21 | homepage http://www.mltframework.org |
|---|
| 22 | platforms darwin |
|---|
| 23 | |
|---|
| 24 | fetch.type svn |
|---|
| 25 | svn.url http://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt |
|---|
| 26 | svn.tag 1351 |
|---|
| 27 | worksrcdir mlt |
|---|
| 28 | |
|---|
| 29 | depends_build port:pkgconfig \ |
|---|
| 30 | port:subversion \ |
|---|
| 31 | port:doxygen |
|---|
| 32 | |
|---|
| 33 | depends_lib port:atk \ |
|---|
| 34 | port:frei0r-plugins \ |
|---|
| 35 | lib:libavcodec:ffmpeg \ |
|---|
| 36 | port:gtk2 \ |
|---|
| 37 | port:libdv \ |
|---|
| 38 | port:libsamplerate \ |
|---|
| 39 | port:libsdl \ |
|---|
| 40 | port:libvorbis \ |
|---|
| 41 | port:qt4-mac \ |
|---|
| 42 | port:sox |
|---|
| 43 | |
|---|
| 44 | configure.args --enable-gpl \ |
|---|
| 45 | --qimage-libdir=/opt/local/libexec/qt4-mac/lib \ |
|---|
| 46 | --qimage-includedir=/opt/local/libexec/qt4-mac/include/Qt \ |
|---|
| 47 | --avformat-swscale \ |
|---|
| 48 | --disable-jackrack |
|---|
| 49 | |
|---|
| 50 | configure.pkg_config_path ${prefix}/lib/pkgconfig:${prefix}/libexec/qt4-mac/lib/pkgconfig |
|---|
| 51 | configure.pkg_config ${prefix}/bin/pkg-config |
|---|
| 52 | |
|---|
| 53 | configure.cflags-append "-I${prefix}/include" |
|---|
| 54 | configure.cflags-append "-I${prefix}/libexec/qt4-mac/include" |
|---|
| 55 | configure.ldflags-append "-L${prefix}/lib" |
|---|
| 56 | build.env CFLAGS="${configure.cflags}" LDFLAGS="${configure.ldflags}" |
|---|
| 57 | |
|---|