Ticket #45944: mapnik-3.0.0-rc1.diff
File mapnik-3.0.0-rc1.diff, 2.0 KB (added by ryandesign (Ryan Carsten Schmidt), 10 years ago) |
---|
-
Portfile
4 4 PortSystem 1.0 5 5 PortGroup github 1.0 6 6 7 github.setup mapnik mapnik 2.2.0 v 8 revision 3 7 github.setup mapnik mapnik 3.0.0-rc1 v 9 8 categories gis devel 10 9 license LGPL-2.1 11 10 platforms darwin … … 27 26 28 27 homepage http://mapnik.org 29 28 30 conflicts py26-mapnik 29 checksums rmd160 6a37a8daa8c1862618e636d41233bf78531b31d1 \ 30 sha256 2999b3cec80812bd87b7ad822188926aac9671a4c5d1a20caa4b3c0e55d8c207 31 31 32 checksums rmd160 2d02fe1ed28bbabe1adb309a74eac100ff5a204d \33 sha256 5500d5cccfe3d9ee1b8353a01688d807b4b2f422d1e17fbc90f75cc543e4039834 35 32 depends_lib-append port:boost \ 36 33 port:icu \ 37 34 port:libpng \ … … 109 106 lappend input_plugins sqlite 110 107 } 111 108 112 default_variants +python27 109 if {![variant_isset python26]} { 110 default_variants +python27 111 } 113 112 universal_variant no 114 113 115 # workaround for #41823 (c++11 compile error with boost 1.55+ and mapnik 2.2.0) 116 patchfiles-append patch-bindings_python_mapnik_text_placement.cpp.diff 114 patchfiles patch-plugins-input-geojson-geojson_datasource.hpp.diff 117 115 118 116 configure.pkg_config ${prefix}/bin/pkg-config 119 117 … … 206 204 207 205 post-destroot { 208 206 xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name} 209 eval xinstall -m 640 [glob ${worksrcpath}/docs/*] \ 207 xinstall -m 644 -W ${worksrcpath} \ 208 {*}[glob ${worksrcpath}/docs/*] AUTHORS.md CHANGELOG.md COPYING README.md \ 210 209 ${destroot}${prefix}/share/doc/${name} 211 xinstall -m 644 -W ${worksrcpath} AUTHORS.md CHANGELOG.md COPYING README.md \212 ${destroot}${prefix}/share/doc/${name}213 210 xinstall -d -m 755 ${destroot}${prefix}/share/${name} 214 211 copy ${worksrcpath}/demo ${destroot}${prefix}/share/${name} 215 212 }