Ticket #35339: zorba.diff
File zorba.diff, 2.6 KB (added by cezar.andrei@…, 12 years ago) |
---|
-
Portfile
old new 1 1 # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 2 # $Id: Portfile 9 8344 2012-10-03 03:05:15Z ryandesign@macports.org $2 # $Id: Portfile 93567 2012-05-27 06:31:50Z ryandesign@macports.org $ 3 3 4 4 PortSystem 1.0 5 5 PortGroup cmake 1.0 6 6 7 7 name zorba 8 version 2. 2.09 revision 18 version 2.8.0 9 revision 3 10 10 set branch [join [lrange [split ${version} .] 0 1] .] 11 11 license Apache-2 12 12 categories textproc devel … … 28 28 homepage http://www.zorba-xquery.com/ 29 29 master_sites https://launchpad.net/zorba/trunk/${branch}/+download 30 30 31 checksums rmd160 976147777830a883d6a459b818a67d3279540045 \ 32 sha256 124929aa0dbf2ec444667c83067b5b27921d8f8043dbdde83674b981c6fb244e 31 distfiles ${name}-${version}.tar.gz \ 32 ${name}_modules-src-${version}.tar.gz 33 34 checksums ${name}-${version}.tar.gz \ 35 rmd160 b4a6b7f8ad5a82c32e3ffdbc84ba67e4cbe90fb1 \ 36 sha256 3c1494aa28effc2682b74d646b4a18b8a87626af31b94427bcc326d0c07db1b8 \ 37 ${name}_modules-src-${version}.tar.gz \ 38 rmd160 8cb52ecd47d1f5725a047f08e1af31cf7cf69256 \ 39 sha256 18e8343203fb35ff29630f988a81142fb1e0bb0ff48b15729172e7883de79127 40 33 41 34 42 # In-source-builds are not allowed 35 43 configure.dir ${worksrcpath}/build 44 36 45 build.dir ${configure.dir} 37 46 38 47 post-extract { 39 48 xinstall -d ${build.dir} 40 49 } 41 50 42 patchfiles patch-docdir.diff \ 43 patch-src-types-schema-SchemaValidatorFilter.h.diff 51 patchfiles patch-src-types-schema-SchemaValidatorFilter.h.diff 44 52 45 depends_build-append \ 46 port:bison \ 47 port:flex 53 # flex and bison are not required, it's actually descuraged to use them 54 #depends_build-append \ 55 # port:bison \ 56 # port:flex 48 57 49 58 depends_lib \ 50 59 port:boost \ 51 60 port:curl \ 61 port:fop \ 62 port:geos \ 52 63 port:icu \ 53 64 port:libiconv \ 54 65 port:libxml2 \ 55 66 port:libxslt \ 67 port:sqlite3 \ 68 port:tidy \ 56 69 port:xercesc3 \ 57 port:tidy 70 port:libarchive 71 58 72 59 73 configure.post_args .. 60 74 configure.args-append \ … … 62 76 -DCURL_INCLUDE_DIR=${prefix}/include \ 63 77 -DCURL_LIBRARY=${prefix}/lib/libcurl.dylib \ 64 78 -DZORBA_SUPPRESS_SWIG=YES \ 65 -DZORBA_XQUERYX=YES 79 -DZORBA_XQUERYX=YES 66 80 67 81 test.env DYLD_LIBRARY_PATH=${worksrcpath}/src 68 82 test.run yes