Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 36012

Show
Ignore:
Timestamp:
2008-04-14 04:26:53 (7 months ago)
Author:
css@…
Message:

Update doxygen to 1.5.5. The command line tool builds fine, but there are still issues with the wizard. Updates will continue via #14603.

Location:
trunk/dports/textproc/doxygen
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/dports/textproc/doxygen/Portfile

    r34316 r36012  
    33PortSystem 1.0 
    44name                    doxygen 
    5 version                 1.5.4 
    6 revision                2 
     5version                 1.5.5 
    76categories              textproc devel 
    87maintainers             css@macports.org 
     
    2827distfiles               ${distname}.src${extract.suffix} 
    2928 
    30 checksums               md5 10ffe8d445dc1bf7dd69292b266906ff \ 
    31                         sha1 1a815f7de6b412f7852d57dec9eb50f7c4b03268 \ 
    32                         rmd160 263e2287da4fbe91a429dc53fe3569b150c76fdf 
     29checksums               md5 95813ecd95b371d13d63844ddb9b5c46 \ 
     30                        sha1 16b555f5d191cc0f854ae9856c49e4823a51c595 \ 
     31                        rmd160 212ef3eca6a43c33189b11d3ab400f5b2069b019 
    3332 
    3433depends_lib             path:${prefix}/bin/pdflatex:texlive \ 
     
    4645} 
    4746 
    48 # Using libiconv should negate the need for this patch. 
    49 #patchfiles             patch-portable.cpp 
     47# Patch support for Tiger. 
     48patchfiles              patch-qfiledefs_p.h 
    5049 
    5150configure.pre_args      --prefix ${prefix} 
    52 configure.args          --docdir ${prefix}/share/doc 
     51configure.args          --docdir ${prefix}/share/doc --dot ${prefix}/bin/dot 
    5352configure.env           QTDIR=${prefix} 
    5453 
     
    8079        } 
    8180} 
    82  
    83 platform darwin 9 { 
    84         # Account for an iconv difference on Leopard. 
    85         patchfiles-append       patch-portable.cpp 
    86         # Specify the platform explicitly to avoid a universal build. 
    87         configure.args-append   --platform macosx-c++ 
    88         if {[variant_isset wizard]} { 
    89                 post-destroot { 
    90                         set dpappdir    ${destroot}/Applications/MacPorts 
    91                         xinstall -m 755 -d ${dpappdir}/doxywizard.app/Contents/MacOS 
    92                         file rename ${destroot}${prefix}/bin/doxywizard \ 
    93                                 ${dpappdir}/doxywizard.app/Contents/MacOS/ 
    94                         xinstall -m 644 ${filespath}/Info.plist \ 
    95                                 ${dpappdir}/doxywizard.app/Contents/ 
    96                 } 
    97         } 
    98 }