Ticket #14603: Portfile-1.5.5_command_line.diff
File Portfile-1.5.5_command_line.diff, 1.8 KB (added by cssdev, 17 years ago) |
---|
-
Portfile
2 2 3 3 PortSystem 1.0 4 4 name doxygen 5 version 1.5.4 6 revision 2 5 version 1.5.5 7 6 categories textproc devel 8 7 maintainers css@macports.org 9 8 description Documentation system for several programming languages … … 27 26 master_sites ftp://ftp.stack.nl/pub/users/dimitri/ 28 27 distfiles ${distname}.src${extract.suffix} 29 28 30 checksums md5 10ffe8d445dc1bf7dd69292b266906ff\31 sha1 1 a815f7de6b412f7852d57dec9eb50f7c4b03268\32 rmd160 2 63e2287da4fbe91a429dc53fe3569b150c76fdf29 checksums md5 95813ecd95b371d13d63844ddb9b5c46 \ 30 sha1 16b555f5d191cc0f854ae9856c49e4823a51c595 \ 31 rmd160 212ef3eca6a43c33189b11d3ab400f5b2069b019 33 32 34 33 depends_lib path:${prefix}/bin/pdflatex:texlive \ 35 34 bin:gs:ghostscript lib:libpng:libpng \ … … 46 45 } 47 46 48 47 # Using libiconv should negate the need for this patch. 49 #patchfiles patch-portable.cpp 48 patchfiles patch-qfiledefs_p.h 50 49 51 50 configure.pre_args --prefix ${prefix} 52 configure.args --docdir ${prefix}/share/doc 51 configure.args --docdir ${prefix}/share/doc --dot ${prefix}/bin/dot 53 52 configure.env QTDIR=${prefix} 54 53 55 54 build.env QTDIR=${prefix} … … 79 78 } 80 79 } 81 80 } 82 83 platform darwin 9 {84 # Account for an iconv difference on Leopard.85 patchfiles-append patch-portable.cpp86 # 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/MacPorts91 xinstall -m 755 -d ${dpappdir}/doxywizard.app/Contents/MacOS92 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 }