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 1 2012-10-05 21:55:00Z okoeroo@nikhef.nl $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup italiangrid voms 2_0_9 |
---|
8 | version [strsed ${github.version} {g/_/./}] |
---|
9 | categories security |
---|
10 | platforms darwin |
---|
11 | maintainers nikhef.nl:okoeroo |
---|
12 | license Apache-2 |
---|
13 | |
---|
14 | description create a proxy with VOMS extensions |
---|
15 | |
---|
16 | long_description The voms-proxy-init generates a proxy with the VOMS information included in a non critical extension. |
---|
17 | |
---|
18 | checksums rmd160 5d6f8ba7aba00173cb22149d7b867ec4684e7435 \ |
---|
19 | sha256 aab51fab8ad4a89fb8dc68dcfc4e44a9eab0542bf437ec3bc330628830ba8633 |
---|
20 | |
---|
21 | depends_build port:autoconf \ |
---|
22 | port:automake \ |
---|
23 | port:libtool |
---|
24 | |
---|
25 | depends_lib port:expat \ |
---|
26 | port:openssl |
---|
27 | |
---|
28 | pre-configure { |
---|
29 | system -W ${worksrcpath} "./autogen.sh" |
---|
30 | } |
---|
31 | |
---|
32 | configure.args --with-expat-prefix=${prefix} \ |
---|
33 | --with-openssl-prefix=${prefix} |
---|
34 | |
---|
35 | # Fix build conflict with mongodb's ${prefix}/include/server.h |
---|
36 | configure.cppflags-delete -I${prefix}/include |
---|
37 | configure.cppflags-append -isystem${prefix}/include |
---|
38 | |
---|
39 | test.run yes |
---|
40 | test.target check |
---|