Ticket #13675: Portfile.diff
File Portfile.diff, 4.0 KB (added by takeshi@…, 17 years ago) |
---|
-
Portfile
old new 1 1 # $Id: Portfile 27348 2007-07-30 14:50:04Z takanori@macports.org $ 2 2 PortSystem 1.0 3 3 name plplot 4 version 5. 7.35 revision 24 version 5.8.0 5 revision 0 6 6 platforms darwin 7 7 maintainers takeshi@mac.com 8 8 categories science 9 9 description Scientific plotting package 10 10 master_sites sourceforge 11 checksums md5 8c5ed411bc63a4fd07b362a1b9a3e46c 11 checksums md5 63e954448b12056aeecf2b53cd97f1f5 \ 12 sha1 c4423c267a148e1b925362c5089726cac2cbefd0 \ 13 rmd160 8d4bce73b54a704739084a787f16bc43cc35876c 12 14 homepage http://plplot.sourceforge.net/ 13 15 long_description { \ 14 16 PLplot is relatively small, portable, freely distributable, \ 15 and is rich enough to satisfy most users. \16 It has a widerange of plot types including line (linear, log), \17 and is rich enough to satisfy most users. It has a wide \ 18 range of plot types including line (linear, log), \ 17 19 contour, 3D, fill, and almost 1000 characters \ 18 20 (including Greek and mathematical) in its extended font set. \ 19 The package is designed to make it easy to quickly get graphical output; \ 20 only a handful of function calls is typically required. \ 21 For more advanced use, virtually all aspects of plotting are configurable.} 21 The package is designed to make it easy to quickly get \ 22 graphical output; only a handful of function calls \ 23 is typically required. For more advanced use, \ 24 virtually all aspects of plotting are configurable.} 22 25 23 26 depends_lib port:cmake \ 24 27 port:expat \ … … 29 32 port:libiconv \ 30 33 port:jpeg \ 31 34 port:libpng \ 32 port:odcctools \33 35 port:pkgconfig \ 36 port:swig \ 34 37 port:tcl \ 35 38 port:tk \ 36 39 port:zlib 37 40 38 # port:fftw-3 39 # port:hdf5 40 # port:readline 41 # port:swig 42 43 patchfiles patch-x18f 41 patchfiles patch-x18f.f90.diff 44 42 45 43 pre-configure { 46 44 file mkdir ${workpath}/build … … 77 75 -DENABLE_python=OFF \ 78 76 -DENABLE_octave=OFF \ 79 77 -DENABLE_pdl=OFF \ 80 -DENABLE_it kl=OFF \78 -DENABLE_itcl=OFF \ 81 79 -DENABLE_itk=OFF \ 82 -DBUILD_TEST=ON 83 # -DSWIG_DIR=${prefix}/bin 80 -DBUILD_TEST=ON \ 81 -DSWIG_DIR=${prefix}/bin 84 82 configure.post_args ../${distname} 85 83 86 84 pre-configure { … … 131 129 configure.args-delete -DENABLE_octave=OFF 132 130 configure.args-append -DENABLE_octave=ON 133 131 } 132 133 variant java description {Add support for Java} { 134 configure.args-delete -DENABLE_java=OFF 135 configure.args-append -DENABLE_java=ON 136 } 137 138 #variant python24 description {Add support for python24} { 139 # depends_lib-append port:python24 \ 140 # port:py24-numpy 141 # configure.args-delete -DENABLE_python=OFF 142 # configure.args-append -DENABLE_python=ON \ 143 # -DHAVE_NUMPY:BOOL=ON \ 144 # -DPYTHON_INCLUDE_PATH=${prefix}/include/python2.4 145 #} 146 147 variant python25 description {Add support for python25} { 148 depends_lib-append port:python25 \ 149 port:py25-numpy 150 configure.args-delete -DENABLE_python=OFF 151 configure.args-append -DENABLE_python=ON \ 152 -DHAVE_NUMPY:BOOL=ON \ 153 -DPYTHON_INCLUDE_PATH=${prefix}/include/python2.5 154 }