Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 21116

Show
Ignore:
Timestamp:
01/02/07 23:57:17 (2 years ago)
Author:
gwright@…
Message:

Deprecate: print an error message advising the user that the main graphviz
port now contains the features that used to only be available through
graphviz-cairo. The portfile can eventually be removed.

Files:
1 modified

Legend:

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

    r20310 r21116  
    33PortSystem 1.0 
    44name            graphviz-cairo 
    5 version         2.8 
     5version         2.12 
    66categories      graphics 
    7 maintainers     gwright@opendarwin.org 
     7maintainers     gwright@macports.org 
    88description     Rendering plugin for graphviz using the Cairo library. 
    99long_description \ 
     
    1515master_sites    ${homepage}/pub/graphviz/ARCHIVE/ 
    1616 
    17 checksums       md5 6aaf70a89eaf36c529f96fa43a228947 
     17pre-fetch       { ui_msg "This port is no longer required as the cairo" 
     18                  ui_msg "functionality is now included in the main graphviz" 
     19                  ui_msg "port, as of version 2.12." 
     20                  ui_msg "" 
     21                  ui_msg "This portfile will eventually be removed." 
     22                  ui_msg "" 
     23                  exit 1 
     24                } 
    1825 
    19 platform darwin 7 { 
    20                         configure.env-append    MACOSX_DEPLOYMENT_TARGET=10.3 
    21                         build.env-append        MACOSX_DEPLOYMENT_TARGET=10.3 
    22 } 
    23  
    24 platform darwin 8 { 
    25                         configure.env-append    MACOSX_DEPLOYMENT_TARGET=10.4 \ 
    26                         CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0 CXX=/usr/bin/g++-4.0 
    27                         build.env-append        MACOSX_DEPLOYMENT_TARGET=10.4 
    28 } 
    29  
    30 depends_lib     port:graphviz           \ 
    31                 port:cairo              \ 
    32                 port:p5-xml-parser 
    33                  
    34  
    35 configure.env   CPPFLAGS=-I${prefix}/include    \ 
    36                 LDFLAGS=-L${prefix}/lib 
    37  
    38 configure.args  --mandir=${prefix}/share/man 
    39  
    40 # Register the installation with dot. 
    41  
    42 post-activate   { system "dot -c" }