RCS file: /Volumes/src/cvs/od/proj/darwinports/dports/multimedia/ffmpeg/Portfile,v
retrieving revision 1.2
diff -u -r1.2 Portfile
|
|
|
3 | 3 | PortSystem 1.0 |
4 | 4 | name ffmpeg |
5 | 5 | version 0.4.8 |
| 6 | revision 1 |
6 | 7 | categories multimedia |
7 | 8 | maintainers ocheron@noos.fr |
8 | 9 | description Digital VCR and streaming server |
… |
… |
|
37 | 38 | configure.env CFLAGS="-I${prefix}/include" |
38 | 39 | configure.args --prefix=${destroot}${prefix} --disable-vhook \ |
39 | 40 | --mandir=${destroot}${prefix}/share/man \ |
40 | | --extra-ldflags="-d -L${prefix}/lib" |
| 41 | --extra-ldflags="-d -L${prefix}/lib" \ |
| 42 | --disable-ffplay |
41 | 43 | patchfiles patch-configure.diff |
42 | 44 | |
43 | 45 | post-destroot { |
… |
… |
|
50 | 52 | |
51 | 53 | # Adds MP3 support |
52 | 54 | variant mp3 { |
53 | | depends_lib-append lib:XXX:lame |
| 55 | depends_lib-append lib:libmp3lame:lame |
54 | 56 | configure.args-append --enable-mp3lame |
55 | 57 | } |
56 | 58 | |
57 | 59 | # Adds Ogg Vorbis support |
58 | 60 | variant ogg-vorbis { |
59 | | depends_lib-append lib:XXX:libvorbis |
| 61 | depends_lib-append lib:libvorbis:libvorbis lib:libvorbisenc:libvorbis lib:libogg:libogg |
60 | 62 | configure.args-append --enable-vorbis |
61 | 63 | } |
62 | 64 | |
63 | 65 | # Adds AAC support |
64 | 66 | variant aac { |
65 | | depends_lib-append lib:XXX:faad2 |
| 67 | depends_lib-append lib:libfaad:faad2 |
66 | 68 | configure.args-append --enable-faad |
67 | 69 | } |
| 70 | |
| 71 | # Adds player (ffplay) |
| 72 | # variant player { |
| 73 | # depends_lib-append lib:libSDL:libsdl |
| 74 | # configure.args-delete --disable-ffplay |
| 75 | # } |