Ticket #18286: Portfile.6

File Portfile.6, 2.1 KB (added by jm@…, 15 years ago)

Please find attached the updated Porfile fixing qimage detection.

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