1 | # $Id: Portfile,v 1.5 2006/02/11 14:15:08 olegb Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup perl5 1.0 |
---|
5 | perl5.setup Apache-Test 1.27 |
---|
6 | maintainers narf_tm@trulycertifiable.com |
---|
7 | description Test.pm wrapper with helpers for testing Apache |
---|
8 | long_description Apache::Test is a wrapper around the standard \ |
---|
9 | Test.pm with helpers for testing an Apache server. |
---|
10 | |
---|
11 | platforms darwin |
---|
12 | |
---|
13 | checksums md5 4a87aa4e388fe9dd3d19c71d3e414caf |
---|
14 | |
---|
15 | depends_lib-append port:apache |
---|
16 | |
---|
17 | configure.pre_args-append -httpd ${prefix}/sbin/httpd |
---|
18 | |
---|
19 | variant apache2 { |
---|
20 | depends_lib-delete port:apache |
---|
21 | depends_lib-append port:apache2 |
---|
22 | configure.pre_args-delete -httpd ${prefix}/sbin/httpd |
---|
23 | configure.pre_args-append -httpd ${prefix}/apache2/bin/httpd |
---|
24 | } |
---|
25 | |
---|