Ticket #37035: plplot.diff
File plplot.diff, 1.6 KB (added by ryandesign (Ryan Carsten Schmidt), 12 years ago) |
---|
-
Portfile
6 6 7 7 name plplot 8 8 version 5.9.9 9 revision 89 revision 9 10 10 platforms darwin 11 11 maintainers takeshi openmaintainer 12 12 categories science … … 34 34 port:libiconv \ 35 35 port:libLASi \ 36 36 port:libpng \ 37 path:lib/pkgconfig/pango.pc:pango \38 37 port:swig-tcl \ 39 38 port:tcl \ 40 port:tk \41 39 port:zlib 42 40 43 41 post-patch { … … 121 119 if {${os.platform}=="darwin"} { 122 120 default_variants +aquaterm 123 121 } 124 default_variants-append +x11125 122 126 123 subport ${name}-single { 127 124 configure.pre_args -DCMAKE_INSTALL_PREFIX=${prefix}/lib/${subport} … … 201 198 -DAQT_FRAMEWORK=${frameworks_dir}/AquaTerm.framework 202 199 } 203 200 204 variant no_x11 conflicts x11 description {Deprecated dummy variant} { 205 } 201 variant no_x11 conflicts x11 description {Legacy compatibility variant} {} 206 202 207 203 variant x11 conflicts no_x11 { 204 depends_lib-append path:lib/pkgconfig/pango.pc:pango \ 205 port:tk 208 206 configure.args-append -DPLD_xcairo=ON \ 209 207 -DPLD_xwin=ON \ 210 208 -DPLD_xfig=ON … … 212 210 -DPLD_xwin=OFF \ 213 211 -DPLD_xfig=OFF 214 212 } 213 214 if {[variant_isset no_x11]} { 215 default_variants -x11 216 } else { 217 default_variants +x11 218 }