Ticket #18286: Portfile.4

File Portfile.4, 1.8 KB (added by jm@…, 15 years ago)

Attached is a newer Portfile. Some remarks: (1) As there are still problems in several libraries, we would like to build from SVN during the first few weeks. This will allow MLT developer to pipe fixes more easily. (2) The failing libraries have been disables (3) We need qimage provider and I am compiling kdesdk4 presently to see if it works. Will upgrade the package later on.

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                mlt
6version             20090202
7categories          multimedia
8maintainers         jmpoure
9description         Open source multimedia framework - core libraries
10long_description    MLT is an open source multimedia framework, designed and developed for \
11                    television broadcasting. It provides a toolkit for broadcasters, video \
12                    editors, media players, transcoders, web streamers and many more types of \
13                    applications. The functionality of the system is provided via an assortment \
14                    of ready to use tools, xml authoring components, and an extendible plug-in \
15                    based API. \
16                    \
17                    This package contains the files necessary for running applications that use \
18                    the MLT multimedia framework.
19homepage            http://www.mltframework.org
20platforms           darwin
21
22fetch.type          svn
23svn.url             http://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt
24worksrcdir          mlt
25
26depends_build       port:pkgconfig \
27                    port:subversion
28
29depends_lib         port:atk \
30                    port:frei0r-plugins \
31                    port:jack \
32                    lib:libavcodec:ffmpeg \
33                    port:gtk2 \
34                    port:libdv \
35                    port:libquicktime \
36                    port:libsamplerate \
37                    port:libvorbis \
38                    port:sox
39
40configure.args      --enable-gpl --disable-jackrack --disable-sox --avformat-swscale
41configure.pkg_config_path   ${prefix}/lib/pkgconfig
42configure.pkg_config    ${prefix}/bin/pkg-config
43
44configure.cflags-append "-I${prefix}/include"
45configure.ldflags-append "-L${prefix}/lib"
46build.env CFLAGS="${configure.cflags}" LDFLAGS="${configure.ldflags}""
47