New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80924


Ignore:
Timestamp:
07/20/11 23:03:51 (4 years ago)
Author:
dports@…
Message:

Generate language.dat.lua hyphenation configuration for LuaTeX.

  • texlive-common: create language.dat.lua; update texlive-update-cnf to generate it from files in $prefix/etc/texmf/language.d/*.lua
  • texlive-common: also make sure that the generated language.def is registered to this port; previously we forgot this, so add a pre-activate hook to remove it if present to avoid conflicts
  • texlive portgroup: add extra arguments to texlive.languages; generate language.dat.lua files for language.d
  • texlive-basic: do not install pregenerated language.dat.lua
  • texlive-lang-*: provide additional arguments to texlive.languages: pattern/hyphenation files and lua-special information
Location:
users/dports/ports
Files:
30 edited

Legend:

Unmodified
Added
Removed
  • users/dports/ports/_resources/port1.0/group/texlive-1.0.tcl

    r80922 r80924  
    300300            set langdeffilename \ 
    301301                ${destroot}${texlive_texmfsysconfig}/language.d/10${name}.def 
     302            set langluafilename \ 
     303                ${destroot}${texlive_texmfsysconfig}/language.d/10${name}.dat.lua 
    302304            set langdatfile [open $langdatfilename "w"] 
    303305            set langdeffile [open $langdeffilename "w"] 
     306            set langluafile [open $langluafilename "w"] 
     307             
    304308            foreach x ${texlive.languages} { 
    305309                set langname [lindex $x 0] 
     
    308312                set langrhmin [lindex $x 3] 
    309313                set langsyns [lindex $x 4] 
     314                set langpatt [lindex $x 5] 
     315                set langhyph [lindex $x 6] 
     316                set langspecial [lindex $x 7] 
    310317 
    311318                puts $langdatfile "$langname $langfile" 
     
    317324                    puts $langdeffile "\\addlanguage{$syn}{$langfile}{}{$langlhmin}{$langrhmin}" 
    318325                } 
    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             
    320349            close $langdatfile 
    321350            close $langdeffile 
     351            close $langluafile 
    322352        } 
    323353 
     
    336366            system "${prefix}/libexec/texlive-update-cnf language.dat" 
    337367            system "${prefix}/libexec/texlive-update-cnf language.def" 
     368            system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 
    338369            system "${prefix}/libexec/texlive-update-cnf updmap.cfg" 
    339370            system "${prefix}/libexec/texlive-update-cnf fmtutil.cnf" 
     
    347378                system "${prefix}/libexec/texlive-update-cnf language.dat" 
    348379                system "${prefix}/libexec/texlive-update-cnf language.def" 
     380                system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 
    349381            } 
    350382            if {${texlive.maps} != ""} { 
     
    378410            system "${prefix}/libexec/texlive-update-cnf language.dat" 
    379411            system "${prefix}/libexec/texlive-update-cnf language.def" 
     412            system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 
    380413        } 
    381414        if {${texlive.forceupdatecnf} || ${texlive.maps} != ""} { 
  • users/dports/ports/tex/texlive-basic/Portfile

    r80922 r80924  
    4747                    texmf/web2c/updmap.cfg \ 
    4848                    texmf/tex/generic/config/language.dat \ 
     49                    texmf/tex/generic/config/language.dat.lua \ 
    4950                    texmf/tex/generic/config/language.def \ 
    5051                    texmf/fonts/map/dvipdfm/updmap \ 
  • users/dports/ports/tex/texlive-common/Portfile

    r80903 r80924  
    2222worksrcdir          ${distname} 
    2323use_xz              yes 
    24 checksums           sha1     b6368e40771d69ef90a079fee7c548a582368a0b \ 
    25                     rmd160   303055018103850e1416f396723cc4da1edc990f 
     24checksums           sha1     a02857ee868df2a8fd393388619f3323648b9940 
     25                    rmd160   a979ebd9151559b7d6ee0f4fd72043e465c5c925 
    2626 
    2727livecheck.type  regex 
     
    7676    xinstall -m 644 ${worksrcpath}/language.us.def \ 
    7777        ${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 
    7880    xinstall -d ${destroot}${texlive_texmfsysvar}/web2c 
    7981    touch ${destroot}${texlive_texmfsysvar}/web2c/updmap.cfg 
     
    8183    xinstall -d ${destroot}${texlive_texmfsysvar}/tex/generic/config 
    8284    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 
    8387    xinstall -m 755 ${worksrcpath}/texlive-update-cnf \ 
    8488        ${destroot}${prefix}/libexec/texlive-update-cnf 
     
    112116    } 
    113117 
     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 
    114124    # Deactivate tetex and any of the texlive 2007 ports. replaced_by 
    115125    # does not accomplish this because not all of these ports conflict 
     
    131141    system "${prefix}/libexec/texlive-update-cnf language.dat" 
    132142    system "${prefix}/libexec/texlive-update-cnf language.def" 
     143    system "${prefix}/libexec/texlive-update-cnf language.dat.lua" 
    133144    system "${prefix}/libexec/texlive-update-cnf updmap.cfg" 
    134145 
  • users/dports/ports/tex/texlive-lang-african/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} {} } 
    2424 
    2525texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-arabic/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} {} {} } 
    2525 
    2626texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-cjk/Portfile

    r80922 r80924  
    2626 
    2727texlive.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} {} {} } 
    2929 
    3030texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-croatian/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {croatian loadhyph-hr.tex 2 2 {}} 
     23    {croatian loadhyph-hr.tex 2 2 {} {hyph-hr.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-cyrillic/Portfile

    r80561 r80924  
    2626 
    2727texlive.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} {} {} } 
    3131 
    3232texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-czechslovak/Portfile

    r80922 r80924  
    2727 
    2828texlive.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} {} } 
    3131 
    3232texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-danish/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {danish loadhyph-da.tex 2 2 {}} 
     23    {danish loadhyph-da.tex 2 2 {} {hyph-da.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-dutch/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {dutch loadhyph-nl.tex 2 2 {}} 
     23    {dutch loadhyph-nl.tex 2 2 {} {hyph-nl.pat.txt} {hyph-nl.hyp.txt} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-english/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} } 
    2525 
    2626 
  • users/dports/ports/tex/texlive-lang-finnish/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {finnish loadhyph-fi.tex 2 2 {}} 
     23    {finnish loadhyph-fi.tex 2 2 {} {hyph-fi.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-french/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} {} } 
    2525 
    2626texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-german/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} {} } 
    2828 
    2929 
  • users/dports/ports/tex/texlive-lang-greek/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} } 
    2727 
    2828texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-hungarian/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {hungarian loadhyph-hu.tex 2 2 {}} 
     23    {hungarian loadhyph-hu.tex 2 2 {} {hyph-hu.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-indic/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} {} } 
    3535 
    3636texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-italian/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {italian loadhyph-it.tex 2 2 {}} 
     23    {italian loadhyph-it.tex 2 2 {} {hyph-it.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-latin/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {latin loadhyph-la.tex 2 2 {}} 
     23    {latin loadhyph-la.tex 2 2 {} {hyph-la.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-latvian/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {latvian loadhyph-lv.tex 2 2 {}} 
     23    {latvian loadhyph-lv.tex 2 2 {} {hyph-lv.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-lithuanian/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {lithuanian loadhyph-lt.tex 2 2 {}} 
     23    {lithuanian loadhyph-lt.tex 2 2 {} {hyph-lt.pat.txt} {} {} } 
    2424 
    2525texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-mongolian/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} } 
    2525 
    2626texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-norwegian/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} } 
    2525 
    2626 
  • users/dports/ports/tex/texlive-lang-other/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} {} } 
    4141 
    4242 
  • users/dports/ports/tex/texlive-lang-polish/Portfile

    r80922 r80924  
    2626 
    2727texlive.languages      \ 
    28     {polish loadhyph-pl.tex 2 2 {}} 
     28    {polish loadhyph-pl.tex 2 2 {} {hyph-pl.pat.txt} {hyph-pl.hyp.txt} {} } 
    2929 
    3030texlive.maps      \ 
  • users/dports/ports/tex/texlive-lang-portuguese/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-spanish/Portfile

    r80561 r80924  
    2121 
    2222texlive.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} {} {} } 
    2626 
    2727 
  • users/dports/ports/tex/texlive-lang-swedish/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {swedish loadhyph-sv.tex 2 2 {}} 
     23    {swedish loadhyph-sv.tex 2 2 {} {hyph-sv.pat.txt} {} {} } 
    2424 
    2525 
  • users/dports/ports/tex/texlive-lang-turkmen/Portfile

    r80561 r80924  
    2121 
    2222texlive.languages      \ 
    23     {turkmen loadhyph-tk.tex 2 2 {}} 
     23    {turkmen loadhyph-tk.tex 2 2 {} {hyph-tk.pat.txt} {} {} } 
    2424 
    2525 
Note: See TracChangeset for help on using the changeset viewer.