Version bump.
[shibboleth/cpp-opensaml.git] / Portfile
1 PortSystem 1.0
2
3 name               opensaml
4 version            2.2.1
5 categories         shibboleth
6 maintainers        cantor.2@osu.edu
7 description        OpenSAML 2 library for C++
8 long_description   SAML 2.0/1.x toolkit
9 homepage           http://www.opensaml.org/
10 master_sites       http://shibboleth.internet2.edu/downloads/opensaml/cpp/${version}/
11 checksums          sha1 37d190a7cd88d151ca7ffd43cc914ad47425b114
12
13 depends_lib        port:xmltooling \
14                    port:xml-security-c \
15                    port:xercesc \
16                    port:log4shib
17
18 configure.args     --disable-static \
19                    --with-log4shib=${prefix} \
20                    --with-xmltooling=${prefix} \
21                    --with-xerces=${prefix} \
22                    --with-xmlsec=${prefix}
23
24 platform darwin 8 {
25         configure.env-append MACOSX_DEPLOYMENT_TARGET=10.4
26         build.env-append MACOSX_DEPLOYMENT_TARGET=10.4
27         destroot.env-append MACOSX_DEPLOYMENT_TARGET=10.4
28 }
29
30 platform darwin 9 {
31         configure.env-append MACOSX_DEPLOYMENT_TARGET=10.4
32         build.env-append MACOSX_DEPLOYMENT_TARGET=10.4
33         destroot.env-append MACOSX_DEPLOYMENT_TARGET=10.4
34 }
35