Check in Mac portfiles.
[shibboleth/cpp-xmltooling.git] / Portfile
1 PortSystem 1.0
2
3 name               xmltooling
4 version            1.2
5 revision           1
6 categories         shibboleth
7 maintainers        cantor.2@osu.edu
8 description        XMLTooling library for C++
9 long_description   Toolkit for security-aware XML processing
10 homepage           http://www.opensaml.org/
11 master_sites       http://shibboleth.internet2.edu/downloads/opensaml/cpp/2.2/
12 checksums          sha1 e140196544de0613a3645319271565deea66801a
13
14 configure.args     --disable-static \
15                    --with-log4shib=${prefix} \
16                    --with-openssl=${prefix} \
17                    --with-curl=${prefix} \
18                    --with-xerces=${prefix} \
19                    --with-xmlsec=${prefix}
20
21
22 depends_lib        port:curl \
23                    port:xercesc \
24                    port:xml-security-c \
25                    port:log4shib
26
27 platform darwin 8 {
28         configure.env-append MACOSX_DEPLOYMENT_TARGET=10.4
29         build.env-append MACOSX_DEPLOYMENT_TARGET=10.4
30         destroot.env-append MACOSX_DEPLOYMENT_TARGET=10.4
31 }
32
33 platform darwin 9 {
34         configure.env-append MACOSX_DEPLOYMENT_TARGET=10.4
35         build.env-append MACOSX_DEPLOYMENT_TARGET=10.4
36         destroot.env-append MACOSX_DEPLOYMENT_TARGET=10.4
37 }
38