diff options
author | bapt <bapt@FreeBSD.org> | 2014-05-05 19:15:53 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-05-05 19:15:53 +0800 |
commit | f03936c419c39e34271cf9d870721142405eb7d3 (patch) | |
tree | f7359dd61a615ee63f07b752d7d286b4e4134527 /net | |
parent | a80b7695b81a5fdda9b135bfb10ce9025dce3470 (diff) | |
download | freebsd-ports-gnome-f03936c419c39e34271cf9d870721142405eb7d3.tar.gz freebsd-ports-gnome-f03936c419c39e34271cf9d870721142405eb7d3.tar.zst freebsd-ports-gnome-f03936c419c39e34271cf9d870721142405eb7d3.zip |
Catch a couple of missing convertsion to :tu/:tl
Submitted by: ak
With hat: portmgr
Diffstat (limited to 'net')
-rw-r--r-- | net/freeswitch-core-devel/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net/freeswitch-core-devel/Makefile b/net/freeswitch-core-devel/Makefile index 0db660bd5f85..907ff56d2db5 100644 --- a/net/freeswitch-core-devel/Makefile +++ b/net/freeswitch-core-devel/Makefile @@ -263,7 +263,7 @@ pre-configure: post-configure: .for i in mod_unimrcp mod_flite mod_pocketsphinx -.if ${PORT_OPTIONS:M${i:S/_//g:U}} +.if ${PORT_OPTIONS:M${i:S/_//g:tu}} @${REINPLACE_CMD} -e 's|#\(asr_tts/${i}\)|\1|g' ${WRKSRC}/modules.conf .endif .endfor @@ -274,17 +274,17 @@ post-configure: mod_vmd mod_avmd mod_spy mod_curl mod_nibblebill mod_memcache mod_directory mod_distributor \ mod_snapshot mod_callcenter mod_fsk mod_ladspa mod_blacklist mod_http_cache mod_abstraction \ mod_voicemail_ivr mod_httapi -.if ${PORT_OPTIONS:M${i:S/_//g:U}} +.if ${PORT_OPTIONS:M${i:S/_//g:tu}} @${REINPLACE_CMD} -e 's|#\(applications/${i}\)|\1|g' ${WRKSRC}/modules.conf .endif .endfor .for i in mod_amrwb mod_celt mod_silk mod_codec2 mod_opus mod_isac mod_ilbc mod_siren -.if ${PORT_OPTIONS:M${i:S/_//g:U}} +.if ${PORT_OPTIONS:M${i:S/_//g:tu}} @${REINPLACE_CMD} -e 's|#\(codecs/${i}\)|\1|g' ${WRKSRC}/modules.conf .endif .endfor .for i in mod_shell_stream mod_shout mod_vlc -.if ${PORT_OPTIONS:M${i:S/_//g:U}} +.if ${PORT_OPTIONS:M${i:S/_//g:tu}} @${REINPLACE_CMD} -e 's|#\(formats/${i}\)|\1|g' ${WRKSRC}/modules.conf .endif .endfor @@ -292,17 +292,17 @@ post-configure: @${REINPLACE_CMD} -e 's|#formats/mod_portaudio_stream|formats/mod_portaudio_stream|g' ${WRKSRC}/modules.conf .endif .for i in mod_say_de mod_say_es mod_say_en mod_say_fr mod_say_he mod_say_hu mod_say_it mod_say_nl mod_say_pt mod_say_ru mod_say_th mod_say_zh -.if ${PORT_OPTIONS:M${i:S/_//g:U}} +.if ${PORT_OPTIONS:M${i:S/_//g:tu}} @${REINPLACE_CMD} -e 's|#\(say/${i}\)|\1|g' ${WRKSRC}/modules.conf .endif .endfor .for i in mod_perl mod_python -.if ${PORT_OPTIONS:M${i:S/_//g:U}} +.if ${PORT_OPTIONS:M${i:S/_//g:tu}} @${REINPLACE_CMD} -e 's|#\(languages/${i}\)|\1|g' ${WRKSRC}/modules.conf .endif .endfor .for i in mod_skinny mod_portaudio mod_dingaling mod_rtmp mod_khomp -.if ${PORT_OPTIONS:M${i:S/_//g:U}} +.if ${PORT_OPTIONS:M${i:S/_//g:tu}} @${REINPLACE_CMD} -e 's|#\(endpoints/${i}\)|\1|g' ${WRKSRC}/modules.conf .endif .endfor |