Ticket #30675: mod_perl2-Portfile.patch

File mod_perl2-Portfile.patch, 1.8 KB (added by astricker@…, 13 years ago)

Update current (2.0.4) Portfile to 2.0.5

  • www/mod_perl2/Portfile

    a b  
    33
    44PortSystem 1.0
    55name                            mod_perl2
    6 version                         2.0.4
     6version                         2.0.5
    77maintainers                     cyberscript.net:ryan
    88categories                      www
    99platforms                       darwin
     
    2424homepage                        http://perl.apache.org/
    2525master_sites            http://perl.apache.org/dist/
    2626distname                        mod_perl-${version}
    27 checksums                       md5     1a05625ae6843085f985f5da8214502a \
    28                     sha1    65299a16ec414a690a48a2bbe63acaa3c6bb897b \
    29                     rmd160  111b8f33e2dcc43ef7a0a7d557ceb467f0c55c6d
     27checksums                       md5     03d01d135a122bd8cebd0cd5b185d674 \
     28                                        sha1    e749e2d7236273217f33cbe7fcd704a662e532d1 \
     29                                        rmd160  d659db1c64200ed9c8863c6e283360dfdd0c8384
    3030depends_lib                     path:bin/perl:perl5 port:apache2
    3131worksrcdir                      mod_perl-${version}
    3232
    33 configure { 
     33configure {
    3434        set APXS ${prefix}/apache2/bin/apxs
    3535        system "cd ${workpath}/${worksrcdir} && \
    3636                ${prefix}/bin/perl Makefile.PL MP_APXS=${APXS}"
     
    4242                xinstall -m 755 -d ${destroot}${prefix}/apache2/include/modules/perl \
    4343                        ${destroot}${prefix}/apache2/libexec
    4444                system "install -m 755 ${worksrcpath}/src/modules/perl/*.h \
    45                 ${destroot}${prefix}/apache2/include/modules/perl" 
     45                ${destroot}${prefix}/apache2/include/modules/perl"
    4646
    4747                xinstall -m 755 ${worksrcpath}/src/modules/perl/mod_perl.so \
    4848                        ${destroot}${prefix}/apache2/libexec/
     
    5656        ui_msg "\nIf this your first install, you might want to"
    5757        ui_msg " * enable mod_perl in apache :\n"
    5858        ui_msg "cd ${prefix}/apache2/libexec"
    59         ui_msg "${prefix}/apache2/bin/apxs -a -e -n \"perl\" mod_perl.so\n"     
     59        ui_msg "${prefix}/apache2/bin/apxs -a -e -n \"perl\" mod_perl.so\n"
    6060        ui_msg " * And then relaunch apache \n"
    6161        ui_msg "${prefix}/apache2/bin/apachectl restart\n"
    6262}