Changeset 80924
- Timestamp:
- 07/20/11 23:03:51 (4 years ago)
- Location:
- users/dports/ports
- Files:
-
- 30 edited
-
_resources/port1.0/group/texlive-1.0.tcl (modified) (6 diffs)
-
tex/texlive-basic/Portfile (modified) (1 diff)
-
tex/texlive-common/Portfile (modified) (5 diffs)
-
tex/texlive-lang-african/Portfile (modified) (1 diff)
-
tex/texlive-lang-arabic/Portfile (modified) (1 diff)
-
tex/texlive-lang-cjk/Portfile (modified) (1 diff)
-
tex/texlive-lang-croatian/Portfile (modified) (1 diff)
-
tex/texlive-lang-cyrillic/Portfile (modified) (1 diff)
-
tex/texlive-lang-czechslovak/Portfile (modified) (1 diff)
-
tex/texlive-lang-danish/Portfile (modified) (1 diff)
-
tex/texlive-lang-dutch/Portfile (modified) (1 diff)
-
tex/texlive-lang-english/Portfile (modified) (1 diff)
-
tex/texlive-lang-finnish/Portfile (modified) (1 diff)
-
tex/texlive-lang-french/Portfile (modified) (1 diff)
-
tex/texlive-lang-german/Portfile (modified) (1 diff)
-
tex/texlive-lang-greek/Portfile (modified) (1 diff)
-
tex/texlive-lang-hungarian/Portfile (modified) (1 diff)
-
tex/texlive-lang-indic/Portfile (modified) (1 diff)
-
tex/texlive-lang-italian/Portfile (modified) (1 diff)
-
tex/texlive-lang-latin/Portfile (modified) (1 diff)
-
tex/texlive-lang-latvian/Portfile (modified) (1 diff)
-
tex/texlive-lang-lithuanian/Portfile (modified) (1 diff)
-
tex/texlive-lang-mongolian/Portfile (modified) (1 diff)
-
tex/texlive-lang-norwegian/Portfile (modified) (1 diff)
-
tex/texlive-lang-other/Portfile (modified) (1 diff)
-
tex/texlive-lang-polish/Portfile (modified) (1 diff)
-
tex/texlive-lang-portuguese/Portfile (modified) (1 diff)
-
tex/texlive-lang-spanish/Portfile (modified) (1 diff)
-
tex/texlive-lang-swedish/Portfile (modified) (1 diff)
-
tex/texlive-lang-turkmen/Portfile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
users/dports/ports/_resources/port1.0/group/texlive-1.0.tcl
r80922 r80924 300 300 set langdeffilename \ 301 301 ${destroot}${texlive_texmfsysconfig}/language.d/10${name}.def 302 set langluafilename \ 303 ${destroot}${texlive_texmfsysconfig}/language.d/10${name}.dat.lua 302 304 set langdatfile [open $langdatfilename "w"] 303 305 set langdeffile [open $langdeffilename "w"] 306 set langluafile [open $langluafilename "w"] 307 304 308 foreach x ${texlive.languages} { 305 309 set langname [lindex $x 0] … … 308 312 set langrhmin [lindex $x 3] 309 313 set langsyns [lindex $x 4] 314 set langpatt [lindex $x 5] 315 set langhyph [lindex $x 6] 316 set langspecial [lindex $x 7] 310 317 311 318 puts $langdatfile "$langname $langfile" … … 317 324 puts $langdeffile "\\addlanguage{$syn}{$langfile}{}{$langlhmin}{$langrhmin}" 318 325 } 319 } 326 327 puts $langluafile "\t\['$langname'\] = {" 328 puts $langluafile "\t\tloader = '$langfile'," 329 puts $langluafile "\t\tlefthyphenmin = $langlhmin," 330 puts $langluafile "\t\trighthyphenmin = $langrhmin," 331 set qsyns {} 332 foreach syn $langsyns { 333 lappend qsyns "'$syn'" 334 } 335 set qsynlist [join $qsyns ", "] 336 puts $langluafile "\t\tsynonyms = { $qsynlist }," 337 if {$langpatt != ""} { 338 puts $langluafile "\t\tpatterns = '$langpatt'," 339 } 340 if {$langhyph != ""} { 341 puts $langluafile "\t\thyphenation = '$langhyph'," 342 } 343 if {$langspecial != ""} { 344 puts $langluafile "\t\tpatterns = '$langspecial'," 345 } 346 puts $langluafile "\t},\n" 347 } 348 320 349 close $langdatfile 321 350 close $langdeffile 351 close $langluafile 322 352 } 323 353 … … 336 366 system "${prefix}/libexec/texlive-update-cnf language.dat" 337 367 system "${prefix}/libexec/texlive-update-cnf language.def" 368 system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 338 369 system "${prefix}/libexec/texlive-update-cnf updmap.cfg" 339 370 system "${prefix}/libexec/texlive-update-cnf fmtutil.cnf" … … 347 378 system "${prefix}/libexec/texlive-update-cnf language.dat" 348 379 system "${prefix}/libexec/texlive-update-cnf language.def" 380 system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 349 381 } 350 382 if {${texlive.maps} != ""} { … … 378 410 system "${prefix}/libexec/texlive-update-cnf language.dat" 379 411 system "${prefix}/libexec/texlive-update-cnf language.def" 412 system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 380 413 } 381 414 if {${texlive.forceupdatecnf} || ${texlive.maps} != ""} { -
users/dports/ports/tex/texlive-basic/Portfile
r80922 r80924 47 47 texmf/web2c/updmap.cfg \ 48 48 texmf/tex/generic/config/language.dat \ 49 texmf/tex/generic/config/language.dat.lua \ 49 50 texmf/tex/generic/config/language.def \ 50 51 texmf/fonts/map/dvipdfm/updmap \ -
users/dports/ports/tex/texlive-common/Portfile
r80903 r80924 22 22 worksrcdir ${distname} 23 23 use_xz yes 24 checksums sha1 b6368e40771d69ef90a079fee7c548a582368a0b \25 rmd160 303055018103850e1416f396723cc4da1edc990f24 checksums sha1 a02857ee868df2a8fd393388619f3323648b9940 25 rmd160 a979ebd9151559b7d6ee0f4fd72043e465c5c925 26 26 27 27 livecheck.type regex … … 76 76 xinstall -m 644 ${worksrcpath}/language.us.def \ 77 77 ${destroot}${texlive_texmfsysconfig}/language.d/00language.us.def 78 xinstall -m 644 ${worksrcpath}/language.us.lua \ 79 ${destroot}${texlive_texmfsysconfig}/language.d/00language.us.lua 78 80 xinstall -d ${destroot}${texlive_texmfsysvar}/web2c 79 81 touch ${destroot}${texlive_texmfsysvar}/web2c/updmap.cfg … … 81 83 xinstall -d ${destroot}${texlive_texmfsysvar}/tex/generic/config 82 84 touch ${destroot}${texlive_texmfsysvar}/tex/generic/config/language.dat 85 touch ${destroot}${texlive_texmfsysvar}/tex/generic/config/language.def 86 touch ${destroot}${texlive_texmfsysvar}/tex/generic/config/language.dat.lua 83 87 xinstall -m 755 ${worksrcpath}/texlive-update-cnf \ 84 88 ${destroot}${prefix}/libexec/texlive-update-cnf … … 112 116 } 113 117 118 # An earlier version forgot to register language.def to this port, 119 # so delete it if it exists to prevent a conflict 120 if [file exists ${texlive_texmfsysvar}/tex/generic/config/language.def] { 121 delete ${texlive_texmfsysvar}/tex/generic/config/language.def 122 } 123 114 124 # Deactivate tetex and any of the texlive 2007 ports. replaced_by 115 125 # does not accomplish this because not all of these ports conflict … … 131 141 system "${prefix}/libexec/texlive-update-cnf language.dat" 132 142 system "${prefix}/libexec/texlive-update-cnf language.def" 143 system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 133 144 system "${prefix}/libexec/texlive-update-cnf updmap.cfg" 134 145 -
users/dports/ports/tex/texlive-lang-african/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {ethiopic loadhyph-mul-ethi.tex 1 1 {amharic geez} }23 {ethiopic loadhyph-mul-ethi.tex 1 1 {amharic geez} {hyph-mul-ethi.pat.txt} {} {} } 24 24 25 25 texlive.maps \ -
users/dports/ports/tex/texlive-lang-arabic/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {arabic zerohyph.tex 2 3 {} } \24 {farsi zerohyph.tex 2 3 {persian} }23 {arabic zerohyph.tex 2 3 {} {} {} {} } \ 24 {farsi zerohyph.tex 2 3 {persian} {} {} {} } 25 25 26 26 texlive.maps \ -
users/dports/ports/tex/texlive-lang-cjk/Portfile
r80922 r80924 26 26 27 27 texlive.languages \ 28 {pinyin loadhyph-zh-latn-pinyin.tex 1 1 {} }28 {pinyin loadhyph-zh-latn-pinyin.tex 1 1 {} {hyph-zh-latn-pinyin.pat.txt} {} {} } 29 29 30 30 texlive.maps \ -
users/dports/ports/tex/texlive-lang-croatian/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {croatian loadhyph-hr.tex 2 2 {} }23 {croatian loadhyph-hr.tex 2 2 {} {hyph-hr.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-cyrillic/Portfile
r80561 r80924 26 26 27 27 texlive.languages \ 28 {bulgarian loadhyph-bg.tex 2 2 {} } \29 {russian loadhyph-ru.tex 2 2 {} } \30 {ukrainian loadhyph-uk.tex 2 2 {} }28 {bulgarian loadhyph-bg.tex 2 2 {} {hyph-bg.pat.txt} {} {} } \ 29 {russian loadhyph-ru.tex 2 2 {} {hyph-ru.pat.txt} {hyph-ru.hyp.txt} {} } \ 30 {ukrainian loadhyph-uk.tex 2 2 {} {hyph-uk.pat.txt} {} {} } 31 31 32 32 texlive.maps \ -
users/dports/ports/tex/texlive-lang-czechslovak/Portfile
r80922 r80924 27 27 28 28 texlive.languages \ 29 {czech loadhyph-cs.tex 2 3 {} } \30 {slovak loadhyph-sk.tex 2 3 {} }29 {czech loadhyph-cs.tex 2 3 {} {hyph-cs.pat.txt} {hyph-cs.hyp.txt} {} } \ 30 {slovak loadhyph-sk.tex 2 3 {} {hyph-sk.pat.txt} {hyph-sk.hyp.txt} {} } 31 31 32 32 texlive.maps \ -
users/dports/ports/tex/texlive-lang-danish/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {danish loadhyph-da.tex 2 2 {} }23 {danish loadhyph-da.tex 2 2 {} {hyph-da.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-dutch/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {dutch loadhyph-nl.tex 2 2 {} }23 {dutch loadhyph-nl.tex 2 2 {} {hyph-nl.pat.txt} {hyph-nl.hyp.txt} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-english/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {ukenglish loadhyph-en-gb.tex 2 3 {british UKenglish} } \24 {usenglishmax loadhyph-en-us.tex 2 3 {} }23 {ukenglish loadhyph-en-gb.tex 2 3 {british UKenglish} {hyph-en-gb.pat.txt} {hyph-en-gb.hyp.txt} {} } \ 24 {usenglishmax loadhyph-en-us.tex 2 3 {} {hyph-en-us.pat.txt} {hyph-en-us.hyp.txt} {} } 25 25 26 26 -
users/dports/ports/tex/texlive-lang-finnish/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {finnish loadhyph-fi.tex 2 2 {} }23 {finnish loadhyph-fi.tex 2 2 {} {hyph-fi.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-french/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {basque loadhyph-eu.tex 2 2 {} } \24 {french loadhyph-fr.tex 2 3 {patois francais} }23 {basque loadhyph-eu.tex 2 2 {} {hyph-eu.pat.txt} {} {} } \ 24 {french loadhyph-fr.tex 2 3 {patois francais} {hyph-fr.pat.txt} {} {} } 25 25 26 26 texlive.maps \ -
users/dports/ports/tex/texlive-lang-german/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {german-x-2009-06-19 dehypht-x-2009-06-19.tex 2 2 {german-x-latest} } \24 {ngerman-x-2009-06-19 dehyphn-x-2009-06-19.tex 2 2 {ngerman-x-latest} } \25 {german loadhyph-de-1901.tex 2 2 {} } \26 {ngerman loadhyph-de-1996.tex 2 2 {} } \27 {swissgerman loadhyph-de-ch-1901.tex 2 2 {} }23 {german-x-2009-06-19 dehypht-x-2009-06-19.tex 2 2 {german-x-latest} {hyph-de-1901.pat.txt} {hyph-de-1901.hyp.txt} {} } \ 24 {ngerman-x-2009-06-19 dehyphn-x-2009-06-19.tex 2 2 {ngerman-x-latest} {hyph-de-1996.pat.txt} {hyph-de-1996.hyp.txt} {} } \ 25 {german loadhyph-de-1901.tex 2 2 {} {hyph-de-1901.pat.txt} {} {} } \ 26 {ngerman loadhyph-de-1996.tex 2 2 {} {hyph-de-1996.pat.txt} {} {} } \ 27 {swissgerman loadhyph-de-ch-1901.tex 2 2 {} {hyph-de-ch-1901.pat.txt} {} {} } 28 28 29 29 -
users/dports/ports/tex/texlive-lang-greek/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {monogreek loadhyph-el-monoton.tex 1 1 {} } \24 {greek loadhyph-el-polyton.tex 1 1 {polygreek} } \25 {ancientgreek loadhyph-grc.tex 1 1 {} } \26 {ibycus ibyhyph.tex 2 2 {} }23 {monogreek loadhyph-el-monoton.tex 1 1 {} {hyph-el-monoton.pat.txt} {} {} } \ 24 {greek loadhyph-el-polyton.tex 1 1 {polygreek} {hyph-el-polyton.pat.txt} {} {} } \ 25 {ancientgreek loadhyph-grc.tex 1 1 {} {hyph-grc.pat.txt} {} {} } \ 26 {ibycus ibyhyph.tex 2 2 {} {} {} {disabled:8-bit only} } 27 27 28 28 texlive.maps \ -
users/dports/ports/tex/texlive-lang-hungarian/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {hungarian loadhyph-hu.tex 2 2 {} }23 {hungarian loadhyph-hu.tex 2 2 {} {hyph-hu.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-indic/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {assamese loadhyph-as.tex 1 1 {} } \24 {bengali loadhyph-bn.tex 1 1 {} } \25 {gujarati loadhyph-gu.tex 1 1 {} } \26 {hindi loadhyph-hi.tex 1 1 {} } \27 {kannada loadhyph-kn.tex 1 1 {} } \28 {malayalam loadhyph-ml.tex 1 1 {} } \29 {marathi loadhyph-mr.tex 1 1 {} } \30 {oriya loadhyph-or.tex 1 1 {} } \31 {panjabi loadhyph-pa.tex 1 1 {} } \32 {tamil loadhyph-ta.tex 1 1 {} } \33 {telugu loadhyph-te.tex 1 1 {} } \34 {sanskrit loadhyph-sa.tex 1 5 {} }23 {assamese loadhyph-as.tex 1 1 {} {hyph-as.pat.txt} {} {} } \ 24 {bengali loadhyph-bn.tex 1 1 {} {hyph-bn.pat.txt} {} {} } \ 25 {gujarati loadhyph-gu.tex 1 1 {} {hyph-gu.pat.txt} {} {} } \ 26 {hindi loadhyph-hi.tex 1 1 {} {hyph-hi.pat.txt} {} {} } \ 27 {kannada loadhyph-kn.tex 1 1 {} {hyph-kn.pat.txt} {} {} } \ 28 {malayalam loadhyph-ml.tex 1 1 {} {hyph-ml.pat.txt} {} {} } \ 29 {marathi loadhyph-mr.tex 1 1 {} {hyph-mr.pat.txt} {} {} } \ 30 {oriya loadhyph-or.tex 1 1 {} {hyph-or.pat.txt} {} {} } \ 31 {panjabi loadhyph-pa.tex 1 1 {} {hyph-pa.pat.txt} {} {} } \ 32 {tamil loadhyph-ta.tex 1 1 {} {hyph-ta.pat.txt} {} {} } \ 33 {telugu loadhyph-te.tex 1 1 {} {hyph-te.pat.txt} {} {} } \ 34 {sanskrit loadhyph-sa.tex 1 5 {} {hyph-sa.pat.txt} {} {} } 35 35 36 36 texlive.maps \ -
users/dports/ports/tex/texlive-lang-italian/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {italian loadhyph-it.tex 2 2 {} }23 {italian loadhyph-it.tex 2 2 {} {hyph-it.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-latin/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {latin loadhyph-la.tex 2 2 {} }23 {latin loadhyph-la.tex 2 2 {} {hyph-la.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-latvian/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {latvian loadhyph-lv.tex 2 2 {} }23 {latvian loadhyph-lv.tex 2 2 {} {hyph-lv.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-lithuanian/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {lithuanian loadhyph-lt.tex 2 2 {} }23 {lithuanian loadhyph-lt.tex 2 2 {} {hyph-lt.pat.txt} {} {} } 24 24 25 25 texlive.maps \ -
users/dports/ports/tex/texlive-lang-mongolian/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {mongolian loadhyph-mn-cyrl.tex 2 2 {} } \24 {mongolianlmc loadhyph-mn-cyrl-x-lmc.tex 2 2 {} }23 {mongolian loadhyph-mn-cyrl.tex 2 2 {} {hyph-mn-cyrl.pat.txt} {} {} } \ 24 {mongolianlmc loadhyph-mn-cyrl-x-lmc.tex 2 2 {} {} {} {disabled:only for 8bit montex with lmc encoding} } 25 25 26 26 texlive.maps \ -
users/dports/ports/tex/texlive-lang-norwegian/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {bokmal loadhyph-nb.tex 2 2 {norwegian norsk} } \24 {nynorsk loadhyph-nn.tex 2 2 {} }23 {bokmal loadhyph-nb.tex 2 2 {norwegian norsk} {hyph-nb.pat.txt} {hyph-nb.hyp.txt} {} } \ 24 {nynorsk loadhyph-nn.tex 2 2 {} {hyph-nn.pat.txt} {hyph-nn.hyp.txt} {} } 25 25 26 26 -
users/dports/ports/tex/texlive-lang-other/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {afrikaans loadhyph-af.tex 1 2 {} } \24 {armenian loadhyph-hy.tex 1 2 {} } \25 {coptic loadhyph-cop.tex 1 1 {} } \26 {esperanto loadhyph-eo.tex 2 2 {} } \27 {estonian loadhyph-et.tex 2 3 {} } \28 {icelandic loadhyph-is.tex 2 2 {} } \29 {indonesian loadhyph-id.tex 2 2 {} } \30 {interlingua loadhyph-ia.tex 2 2 {} } \31 {irish loadhyph-ga.tex 2 3 {} } \32 {kurmanji loadhyph-kmr.tex 2 2 {} } \33 {lao loadhyph-lo.tex 1 1 {} } \34 {romanian loadhyph-ro.tex 2 2 {} } \35 {serbian loadhyph-sr-latn.tex 2 2 {} } \36 {serbianc loadhyph-sr-cyrl.tex 2 2 {} } \37 {slovenian loadhyph-sl.tex 2 2 {slovene} } \38 {turkish loadhyph-tr.tex 2 2 {} } \39 {uppersorbian loadhyph-hsb.tex 2 2 {} } \40 {welsh loadhyph-cy.tex 2 3 {} }23 {afrikaans loadhyph-af.tex 1 2 {} {hyph-af.pat.txt} {hyph-af.hyp.txt} {} } \ 24 {armenian loadhyph-hy.tex 1 2 {} {hyph-hy.pat.txt} {} {} } \ 25 {coptic loadhyph-cop.tex 1 1 {} {hyph-cop.pat.txt} {} {} } \ 26 {esperanto loadhyph-eo.tex 2 2 {} {hyph-eo.pat.txt} {} {} } \ 27 {estonian loadhyph-et.tex 2 3 {} {hyph-et.pat.txt} {} {} } \ 28 {icelandic loadhyph-is.tex 2 2 {} {hyph-is.pat.txt} {} {} } \ 29 {indonesian loadhyph-id.tex 2 2 {} {hyph-id.pat.txt} {hyph-id.hyp.txt} {} } \ 30 {interlingua loadhyph-ia.tex 2 2 {} {hyph-ia.pat.txt} {hyph-ia.hyp.txt} {} } \ 31 {irish loadhyph-ga.tex 2 3 {} {hyph-ga.pat.txt} {hyph-ga.hyp.txt} {} } \ 32 {kurmanji loadhyph-kmr.tex 2 2 {} {hyph-kmr.pat.txt} {} {} } \ 33 {lao loadhyph-lo.tex 1 1 {} {hyph-lo.pat.txt} {} {} } \ 34 {romanian loadhyph-ro.tex 2 2 {} {hyph-ro.pat.txt} {} {} } \ 35 {serbian loadhyph-sr-latn.tex 2 2 {} {hyph-sh-latn.pat.txt,hyph-sh-cyrl.pat.txt} {hyph-sh-latn.hyp.txt,hyph-sh-cyrl.hyp.txt} {} } \ 36 {serbianc loadhyph-sr-cyrl.tex 2 2 {} {hyph-sh-latn.pat.txt,hyph-sh-cyrl.pat.txt} {hyph-sh-latn.hyp.txt,hyph-sh-cyrl.hyp.txt} {} } \ 37 {slovenian loadhyph-sl.tex 2 2 {slovene} {hyph-sl.pat.txt} {} {} } \ 38 {turkish loadhyph-tr.tex 2 2 {} {hyph-tr.pat.txt} {} {} } \ 39 {uppersorbian loadhyph-hsb.tex 2 2 {} {hyph-hsb.pat.txt} {hyph-hsb.hyp.txt} {} } \ 40 {welsh loadhyph-cy.tex 2 3 {} {hyph-cy.pat.txt} {} {} } 41 41 42 42 -
users/dports/ports/tex/texlive-lang-polish/Portfile
r80922 r80924 26 26 27 27 texlive.languages \ 28 {polish loadhyph-pl.tex 2 2 {} }28 {polish loadhyph-pl.tex 2 2 {} {hyph-pl.pat.txt} {hyph-pl.hyp.txt} {} } 29 29 30 30 texlive.maps \ -
users/dports/ports/tex/texlive-lang-portuguese/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {portuguese loadhyph-pt.tex 2 3 {portuges} }23 {portuguese loadhyph-pt.tex 2 3 {portuges} {hyph-pt.pat.txt} {hyph-pt.hyp.txt} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-spanish/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {spanish loadhyph-es.tex 2 2 {espanol} } \24 {catalan loadhyph-ca.tex 2 2 {} } \25 {galician loadhyph-gl.tex 2 2 {} }23 {spanish loadhyph-es.tex 2 2 {espanol} {hyph-es.pat.txt} {} {} } \ 24 {catalan loadhyph-ca.tex 2 2 {} {hyph-ca.pat.txt} {hyph-ca.hyp.txt} {} } \ 25 {galician loadhyph-gl.tex 2 2 {} {hyph-gl.pat.txt} {} {} } 26 26 27 27 -
users/dports/ports/tex/texlive-lang-swedish/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {swedish loadhyph-sv.tex 2 2 {} }23 {swedish loadhyph-sv.tex 2 2 {} {hyph-sv.pat.txt} {} {} } 24 24 25 25 -
users/dports/ports/tex/texlive-lang-turkmen/Portfile
r80561 r80924 21 21 22 22 texlive.languages \ 23 {turkmen loadhyph-tk.tex 2 2 {} }23 {turkmen loadhyph-tk.tex 2 2 {} {hyph-tk.pat.txt} {} {} } 24 24 25 25
Note: See TracChangeset
for help on using the changeset viewer.

