# $Id$ PortSystem 1.0 PortGroup perl5 1.0 perl5.branches 5.8 5.10 5.12 5.14 5.16 5.18 perl5.setup libapreq2 2.13 Apache2 revision 3 license Apache-2 maintainers nomaintainer description Methods for dealing with client request data long_description Apache::Request is a subclass of the Apache class, \ which adds methods for parsing GET requests and POST \ requests where Content-type is one of \ application/x-www-form-urlencoded or \ multipart/form-data. platforms darwin checksums md5 c11fb0861aa84dcc6cd0f0798b045eee \ sha1 db3761625a62230147896b47e9b047660b20ba28 \ rmd160 8d7d2573624193b6dfbbe354b3771012257c1578 if {${perl5.major} != ""} { depends_lib-append port:apache2 \ port:mod_perl2 \ port:p${perl5.major}-extutils-xsbuilder set apxs ${prefix}/apache2/bin/apxs configure.args --with-apache2-apxs=${apxs} --with-mm-opts="${configure.args}" destroot.pre_args install destroot.violate_mtree yes ## stolen from perl5 group code post-destroot { foreach packlist [exec find ${destroot} -name .packlist] { ui_info "Fixing packlist ${packlist}" reinplace "s|${destroot}||" ${packlist} } foreach badfile [exec find ${destroot} -name perllocal.pod] { ui_info "Removing ${badfile}" file delete ${badfile} } } notes " If this your first install, you might want to enable apreq in apache: ${apxs} -a -e -n \"apreq\" mod_apreq2.so And then relaunch apache: ${prefix}/apache2/bin/apachectl restart " }