Ticket #31382: Portfile.patch
File Portfile.patch, 1.4 KB (added by eborisch (Eric A. Borisch), 13 years ago) |
---|
-
Portfile
24 24 rmd160 34641bf8e664c3b3382d1346a65e2f5c3eb485ee 25 25 distname ${realname}-${version} 26 26 use_bzip2 yes 27 depends_lib port:zlib port:szip27 depends_lib port:zlib 28 28 use_parallel_build yes 29 29 30 configure.args --with-zlib=yes -- with-szlib=yes --enable-filters=all \30 configure.args --with-zlib=yes --enable-filters=all \ 31 31 --enable-production --disable-fortran \ 32 32 --enable-cxx --enable-shared --enable-static \ 33 33 --disable-parallel 34 34 35 # http://mail.hdfgroup.org/pipermail/hdf-forum_hdfgroup.org/2010-March/002682.html 36 license {NCSA} 37 35 38 post-configure { 36 39 if {[variant_isset universal]} { 37 40 set dirs {} … … 53 56 test.run yes 54 57 test.target check 55 58 59 variant szip description {Enable szip support. (Noncommercial license)} { 60 depends_lib-append port:szip 61 configure.args-append --with-szlib=yes 62 license {Noncommercial} 63 } 64 65 56 66 variant threadsafe description {Enable threadsafety (experimental and un-supported, disables cxx support)} conflicts openmpi { 57 67 configure.args-delete --disable-threadsafe --enable-cxx 58 68 configure.args-append --enable-threadsafe --disable-cxx