Ticket #7349: Portfile

File Portfile, 705 bytes (added by blb@…, 18 years ago)

Updated Portfile

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