Ticket #28426: Portfile.diff
File Portfile.diff, 1.8 KB (added by l2g@…, 14 years ago) |
---|
-
dports/textproc/doxygen/Portfile
old new 4 4 5 5 name doxygen 6 6 version 1.7.3 7 revision 17 revision 2 8 8 categories textproc devel 9 9 maintainers css 10 10 description Documentation system for several programming languages … … 29 29 ftp://ftp.stack.nl/pub/users/dimitri/ 30 30 distfiles ${distname}.src${extract.suffix} 31 31 32 checksums md5 6cc5ad566dbec5cf843dc600b1162808\32 checksums doxygen-1.7.3.src.tar.gz \ 33 33 sha1 06e1d84b50beecdfe0f91393b83c29e8a3db1011 \ 34 34 rmd160 52f0826451535754c77b7984e580f02f1c7d50f3 35 35 … … 112 112 } 113 113 } 114 114 115 # This is a patch written by René Zaumseil that adds Tcl support to Doxygen. 116 variant tcl description {Add EXPERIMENTAL support for Tcl (http://wiki.tcl.tk/27011)} { 117 patch_sites sourceforge:kbskit/doxygen\+tcl 118 patchfiles-append doxygen\+tcl.patch 119 checksums-append doxygen\+tcl.patch \ 120 sha1 c9276520bb386f63756def5c064c4756975e06a7 \ 121 rmd160 d3ff1de4a6b75d33655ae44dbe11a60c04224419 \ 122 } 123 115 124 platform darwin { 116 125 # Specify the platform explicitly to avoid a universal build. 117 126 global tmake_conf arch_flags … … 124 133 set arch_flags ${configure.universal_cflags} 125 134 } 126 135 } 136 137 pre-patch { 138 if {[variant_isset tcl]} { 139 reinplace "s|^--- 746doxygen-svn/|--- |" ${distpath}/doxygen\+tcl.patch 140 reinplace "s|^+++ doxygen-svn/|+++ |" ${distpath}/doxygen\+tcl.patch 141 } 142 }