New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Ticket #15420: pdftk.diff

File pdftk.diff, 1.9 KB (added by jochen@…, 4 years ago)

Portfile patch

  • Portfile

     
    7474        ${destroot}/${prefix}/share/man/man1 
    7575} 
    7676 
    77 variant with_gcc34 conflicts with_gcj34 with_gcc41 with_gcc42 i386 description {Build using gcc34 (PowerPC only)} { 
     77variant with_gcc34 conflicts with_gcj34 with_gcc41 with_gcc42 i386 with_gcc43 description {Build using gcc34 (PowerPC only)} { 
    7878    depends_lib-append  port:gcc34 
    7979    set versuff         -dp-3.4 
    8080} 
    8181 
    82 variant with_gcj34 conflicts with_gcc34 with_gcc41 with_gcc42 i386 description {Build using gcj34 (PowerPC only)} { 
     82variant with_gcj34 conflicts with_gcc34 with_gcc41 with_gcc42 i386 with_gcc43 description {Build using gcj34 (PowerPC only)} { 
    8383    depends_lib-append  port:gcj34 
    8484    set toolpath        ${prefix}/gcj34-3.4.6/bin/ 
    8585} 
    8686 
    87 variant with_gcc41 conflicts with_gcc34 with_gcj34 with_gcc42 i386 description {Build using gcc41 (PowerPC only)} { 
     87variant with_gcc41 conflicts with_gcc34 with_gcj34 with_gcc42 i386 with_gcc43 description {Build using gcc41 (PowerPC only)} { 
    8888    depends_lib-append  port:gcc41 
    8989    set versuff         -mp-4.1 
    9090} 
    9191 
    92 variant with_gcc42 conflicts with_gcc34 with_gcj34 with_gcc41 description {Build using gcc42 (default)} { 
     92variant with_gcc42 conflicts with_gcc34 with_gcj34 with_gcc41 with_gcc43 description {Build using gcc42} { 
    9393    depends_lib-append  port:gcc42 
    9494    set versuff         -mp-4.2 
    9595} 
    9696 
     97variant with_gcc43 conflicts with_gcc34 with_gcj34 with_gcc41 with_gcc42 description {Build using gcc43 (default)} { 
     98    depends_lib-append  port:gcc43 
     99    set versuff         -mp-4.3 
     100} 
     101 
    97102platform i386 {} 
    98103 
    99104if { ![variant_isset with_gcc34] && ![variant_isset with_gcj34] && ![variant_isset with_gcc41] && ![variant_isset with_gcc42] } { 
    100     default_variants    +with_gcc42 
     105    default_variants    +with_gcc43 
    101106}