Ticket #12852: Portfile

File Portfile, 1.4 KB (added by msroest@…, 17 years ago)

Updated port file to 2.8.0

Line 
1# $Id: Portfile 26898 2007-07-11 05:23:51Z yves@macports.org $
2
3PortSystem 1.0
4name                    xercesc
5version                 2.8.0
6revision                1
7categories              textproc
8maintainers             chris.ridd@isode.com
9description             an XML parser
10long_description        Xerces-C++ is a validating XML parser written in \
11                        a portable subset of C++.  Xerces-C++ makes it \
12                        easy to give your application the ability to read \
13                        and write XML data.  A shared library is provided \
14                        for parsing, generating, manipulating, and \
15                        validating XML documents.
16homepage                http://xerces.apache.org/xerces-c/
17master_sites            apache:xerces/c/sources/
18distname                xerces-c-src_2_8_0
19checksums               md5 5daf514b73f3e0de9e3fce704387c0d2
20platforms               darwin
21
22configure.dir           ${worksrcpath}/src/xercesc
23configure.env           XERCESCROOT=${worksrcpath}
24configure.pre_args      -P "${prefix}"
25configure.cmd           ./runConfigure
26
27build.dir               ${worksrcpath}/src/xercesc
28build.env               ${configure.env}
29build.type              gnu
30
31platform darwin {
32        configure.pre_args-append       -p macosx -n native
33}
34
35platform darwin 8 {
36        configure.pre_args-append       -c /usr/bin/gcc-4.0 -x /usr/bin/g++-4.0
37}
38
39destroot.env            ${configure.env}
40
41post-destroot   {
42        xinstall -d -m 755 ${destroot}${prefix}/share/doc
43        file copy ${worksrcpath}/doc/html ${destroot}${prefix}/share/doc/${name}
44        xinstall -m 644 -W ${worksrcpath} version.incl LICENSE.txt Readme.html \
45                credits.txt ${destroot}${prefix}/share/doc/${name}
46}