Ticket #37424: Portfile

File Portfile, 1.2 KB (added by mathew@…, 11 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4
5name                    xalanc
6version                 1.11
7revision                1
8categories              textproc
9platforms               darwin freebsd
10maintainers             mww
11license                 Apache-2
12description             XSLT processor in C++ for transforming XML
13long_description        Xalan is an XSLT processor for transforming XML \
14                                documents into HTML, text, or other XML document \
15                                types.  Xalan-C++ version 1.6 is a robust \
16                                implementation of the W3C Recommendations for XSL \
17                                Transformations (XSLT) and the XML Path Language \
18                                (XPath).
19
20homepage                http://xalan.apache.org/xalan-c/
21master_sites            apache:xalan/xalan-c/sources/
22distname                xalan_c-${version}-src
23checksums               md5 9227d3e7ab375da3c643934b33a585b8
24patchfiles              patch-Makefile.incl.in
25
26depends_lib             port:xercesc3
27
28worksrcdir              xalan-c-${version}/c
29
30compiler.blacklist clang
31
32configure.env   XALANCROOT='${workpath}/${worksrcdir}' \
33                                XERCESCROOT='${prefix}'
34configure.cmd   ./runConfigure
35configure.pre_args -C --prefix=${prefix} \
36                   -c ${configure.cc} -x ${configure.cxx}
37
38platform darwin {
39        configure.pre_args-append       -p macosx
40}
41
42build.env               ${configure.env}
43build.type              gnu
44use_parallel_build no
45
46destroot.env    ${configure.env}
47
48livecheck.type  moddate
49