comparison multimedia/ffmpeg/ffmpeg.sh @ 904:25a95c53d800

vanilla: rename FREETYPE to TTF, closes #2202
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 20:20:00 +0200
parents a133976e0783
children ddab65a5b3f5
comparison
equal deleted inserted replaced
903:931d2626ae5f 904:25a95c53d800
54 PKGOPTIONS="ALSA 54 PKGOPTIONS="ALSA
55 BLURAY 55 BLURAY
56 BZIP2 56 BZIP2
57 CRYPTO 57 CRYPTO
58 FONTCONFIG 58 FONTCONFIG
59 FREETYPE
60 FRIBIDI 59 FRIBIDI
61 GMP 60 GMP
62 JACK 61 JACK
63 LZMA 62 LZMA
64 MP3 63 MP3
68 SPEEX 67 SPEEX
69 SSH 68 SSH
70 SSL 69 SSL
71 SVG 70 SVG
72 THEORA 71 THEORA
72 TTF
73 VORBIS 73 VORBIS
74 WEBP 74 WEBP
75 X 75 X
76 X265 76 X265
77 XML 77 XML
80 : ${ALSA:=yes} 80 : ${ALSA:=yes}
81 : ${BLURAY:=no} 81 : ${BLURAY:=no}
82 : ${BZIP2:=yes} 82 : ${BZIP2:=yes}
83 : ${CRYPTO:=no} 83 : ${CRYPTO:=no}
84 : ${FONTCONFIG:=no} 84 : ${FONTCONFIG:=no}
85 : ${FREETYPE:=no}
86 : ${FRIBIDI:=no} 85 : ${FRIBIDI:=no}
87 : ${GMP:=no} 86 : ${GMP:=no}
88 : ${JACK:=no} 87 : ${JACK:=no}
89 : ${LZMA:=yes} 88 : ${LZMA:=yes}
90 : ${MP3:=yes} 89 : ${MP3:=yes}
94 : ${SPEEX:=no} 93 : ${SPEEX:=no}
95 : ${SSH:=no} 94 : ${SSH:=no}
96 : ${SSL:=no} 95 : ${SSL:=no}
97 : ${SVG:=no} 96 : ${SVG:=no}
98 : ${THEORA:=no} 97 : ${THEORA:=no}
98 : ${TTF:=no}
99 : ${VORBIS:=no} 99 : ${VORBIS:=no}
100 : ${WEBP:=no} 100 : ${WEBP:=no}
101 : ${X265:=no} 101 : ${X265:=no}
102 : ${X:=no} 102 : ${X:=no}
103 : ${XML:=no} 103 : ${XML:=no}
136 with_fontconfig="--enable-fontconfig" 136 with_fontconfig="--enable-fontconfig"
137 else 137 else
138 with_fontconfig="--disable-fontconfig" 138 with_fontconfig="--disable-fontconfig"
139 fi 139 fi
140 140
141 if [ "$FREETYPE" = "yes" ]; then
142 PKGDEPENDS="freetype $PKGDEPENDS"
143 with_freetype="--enable-libfreetype"
144 else
145 with_freetype="--disable-libfreetype"
146 fi
147
148 if [ "$FRIBIDI" = "yes" ]; then 141 if [ "$FRIBIDI" = "yes" ]; then
149 PKGDEPENDS="fonts/fribidi $PKGDEPENDS" 142 PKGDEPENDS="fonts/fribidi $PKGDEPENDS"
150 with_fribidi="--enable-libfribidi" 143 with_fribidi="--enable-libfribidi"
151 else 144 else
152 with_fribidi="--disable-libfribidi" 145 with_fribidi="--disable-libfribidi"
235 if [ "$THEORA" = "yes" ]; then 228 if [ "$THEORA" = "yes" ]; then
236 PKGDEPENDS="libtheora $PKGDEPENDS" 229 PKGDEPENDS="libtheora $PKGDEPENDS"
237 with_theora="--enable-libtheora" 230 with_theora="--enable-libtheora"
238 else 231 else
239 with_theora="--disable-libtheora" 232 with_theora="--disable-libtheora"
233 fi
234
235 if [ "$TTF" = "yes" ]; then
236 PKGDEPENDS="freetype $PKGDEPENDS"
237 with_ttf="--enable-libfreetype"
238 else
239 with_ttf="--disable-libfreetype"
240 fi 240 fi
241 241
242 if [ "$VORBIS" = "yes" ]; then 242 if [ "$VORBIS" = "yes" ]; then
243 PKGDEPENDS="libvorbis $PKGDEPENDS" 243 PKGDEPENDS="libvorbis $PKGDEPENDS"
244 with_vorbis="--enable-libvorbis" 244 with_vorbis="--enable-libvorbis"
315 $with_alsa \ 315 $with_alsa \
316 $with_bluray \ 316 $with_bluray \
317 $with_bzip2 \ 317 $with_bzip2 \
318 $with_crypto \ 318 $with_crypto \
319 $with_fontconfig \ 319 $with_fontconfig \
320 $with_freetype \
321 $with_fribidi \ 320 $with_fribidi \
322 $with_gmp \ 321 $with_gmp \
323 $with_jack \ 322 $with_jack \
324 $with_lzma \ 323 $with_lzma \
325 $with_mp3 \ 324 $with_mp3 \
329 $with_speex \ 328 $with_speex \
330 $with_ssh \ 329 $with_ssh \
331 $with_ssl \ 330 $with_ssl \
332 $with_svg \ 331 $with_svg \
333 $with_theora \ 332 $with_theora \
333 $with_ttf \
334 $with_vorbis \ 334 $with_vorbis \
335 $with_webp \ 335 $with_webp \
336 $with_x265 \ 336 $with_x265 \
337 $with_x \ 337 $with_x \
338 $with_xml \ 338 $with_xml \