Ticket #44730: doxygen.diff
File doxygen.diff, 2.3 KB (added by KubaO (Kuba Ober), 10 years ago) |
---|
-
textproc/doxygen/Portfile
old new 4 4 PortSystem 1.0 5 5 6 6 name doxygen 7 version 1.8. 77 version 1.8.8 8 8 categories textproc devel 9 9 maintainers css openmaintainer 10 10 license GPL-2 … … 35 35 distfiles ${distname}.src${extract.suffix} 36 36 37 37 checksums ${distname}.src${extract.suffix} \ 38 rmd160 bef0f6dcd4fac3e0bc6126cae23374e960ab9163\39 sha256 c6eac6b6e82148ae15ec5aecee4631547359f284af1ce94474d046ebca6ee3d938 rmd160 9f748f424c20259b5df98b05f8c2cf7bf8b85ed4 \ 39 sha256 d1f978350527a2338199c9abb78f76f10746520de5dc4ae4cdd27fc9df9b19b8 40 40 41 41 depends_build-append bin:perl:perl5 \ 42 42 port:flex \ … … 71 71 delete ${worksrcpath}/src/ce_parse.h 72 72 delete ${worksrcpath}/src/vhdlparser.cpp 73 73 delete ${worksrcpath}/src/vhdlparser.h 74 75 # This file should be regenerated, this is a dist packaging bug 76 delete ${worksrcpath}/src/Makefile.libdoxycfg 74 77 } 75 78 76 79 set cxx_stdlibflags {} … … 101 104 if {[string match *gcc* ${configure.compiler}]} { 102 105 reinplace "s|-Wno-invalid-source-encoding||g" ${tmake_conf} 103 106 } 107 108 # we're using macports libiconv 109 reinplace "s|^#define LIBICONV_PLUG||" ${worksrcpath}/src/portable_c.c 110 111 # get rid of the deployment target selection, it breaks the Mavericks build 112 if { ${os.major}>=13 } { 113 reinplace "s|-mmacosx-version-min=10\\.5||" \ 114 ${worksrcpath}/addon/doxmlparser/examples/metrics/Makefile.metrics \ 115 ${worksrcpath}/addon/doxmlparser/src/Makefile.doxmlparser \ 116 ${worksrcpath}/addon/doxmlparser/test/Makefile.xmlparse \ 117 ${worksrcpath}/addon/doxywizard/Makefile.doxywizard \ 118 ${worksrcpath}/libmd5/Makefile.libmd5 \ 119 ${worksrcpath}/tmake/lib/macosx-c++/tmake.conf \ 120 ${worksrcpath}/tmake/lib/macosx-intel-c++/tmake.conf \ 121 ${worksrcpath}/tmake/lib/macosx-uni-c++/tmake.conf \ 122 ${worksrcpath}/vhdlparser/Makefile.vhdlparser 123 } 104 124 } 105 125 106 126 build.type gnu