Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 21115

Show
Ignore:
Timestamp:
01/02/07 23:51:30 (23 months ago)
Author:
gwright@…
Message:

Version bump to 2.12.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/dports/graphics/graphviz/Portfile

    r20782 r21115  
    33PortSystem 1.0 
    44name            graphviz 
    5 version         2.8 
    6 revision        1 
     5version         2.12 
    76categories      graphics 
    87maintainers     gwright@opendarwin.org 
     
    2726master_sites    http://www.graphviz.org/pub/graphviz/ARCHIVE/ 
    2827 
    29 checksums       md5 ca921b4a9bcd86da4a1092bb17a57d83 
     28checksums       md5 e5547bc0ec47943c72f5c3e2b5dff58f 
    3029 
    3130platform darwin 6 { 
     
    5554 
    5655depends_lib     lib:libX11.6:XFree86    \ 
     56                port:cairo              \ 
    5757                port:jpeg               \ 
    5858                port:libpng             \ 
     
    6969# binding. If this is a problem for anyone it is easily remedied.) 
    7070# 
    71 # I have to use an ugly method to prevent the language bindings from 
    72 # being built: explicitly setting some of autoconf's environment 
    73 # variables.  This should go away when 2.8 is released.  It uses 
    74 # the standard GNU --{en,dis}able-feature flags to configure. 
    75  
    7671configure.env   CPPFLAGS=-I${prefix}/include    \ 
    7772                LDFLAGS=-L${prefix}/lib 
     
    7974configure.args  --mandir=${prefix}/share/man    \ 
    8075                --disable-guile                 \ 
     76                --disable-lua                   \ 
    8177                --disable-ocaml                 \ 
    8278                --disable-perl                  \ 
     
    8783variant guile   { depends_lib-append    port:guile 
    8884                  configure.args-append --enable-guile 
     85                } 
     86 
     87variant lua     { depends_lib-append    port:lua 
     88                  configure.args-append --enable-lua 
    8989                } 
    9090 
     
    110110 
    111111variant all_lang { depends_lib-append   port:guile      \ 
     112                                        port:lua        \ 
    112113                                        port:ocaml      \ 
    113114                                        port:perl5.8    \ 
     
    117118 
    118119                  configure.args-append --enable-guile  \ 
     120                                        --enable-lua    \ 
    119121                                        --enable-ocaml  \ 
    120122                                        --enable-perl   \