New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80539


Ignore:
Timestamp:
07/14/11 04:11:19 (4 years ago)
Author:
ryandesign@…
Message:

mod_chroot: whitespace changes and reformatting only; see #30173

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/www/mod_chroot/Portfile

    r80357 r80539  
     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 
    12# $Id$ 
    23 
    3 PortSystem 1.0 
     4PortSystem          1.0 
    45 
    5 name                    mod_chroot 
    6 version                 0.5 
    7 categories              www security 
    8 platforms               darwin 
    9 maintainers             freebsd.org:miwi 
    10 description             module for running apache2 in a secure chroot environment 
    11 long_description        mod_chroot makes running apache2 in a secure chroot \ 
    12                                 environment easy. You don't need to create a special \ 
    13                                 directory hierarchy containing /dev, /lib, /etc... 
     6name                mod_chroot 
     7version             0.5 
     8categories          www security 
     9platforms           darwin 
     10maintainers         freebsd.org:miwi 
    1411 
    15 homepage                http://core.segfault.pl/~hobbit/mod_chroot 
    16 master_sites    ${homepage}/dist/ \ 
    17                                 freebsd 
     12description         module for running apache2 in a secure chroot environment 
    1813 
    19 checksums               sha1    42935c37fb163ff519651ddd0b0fd6982a978015 \ 
    20                                 rmd160  baba1cac0f05953dac5ab7f483bbc49417eaf8ff 
     14long_description    mod_chroot makes running apache2 in a secure chroot \ 
     15                    environment easy. You don't need to create a special \ 
     16                    directory hierarchy containing /dev, /lib, /etc... 
    2117 
    22 depends_lib             path:apache2/bin/apxs:apache2 
     18homepage            http://core.segfault.pl/~hobbit/mod_chroot 
     19master_sites        {homepage}/dist/ \ 
     20                    freebsd 
    2321 
    24 use_configure   no 
     22checksums           sha1    42935c37fb163ff519651ddd0b0fd6982a978015 \ 
     23                    rmd160  baba1cac0f05953dac5ab7f483bbc49417eaf8ff 
    2524 
    26 build.cmd               ${prefix}/apache2/bin/apxs 
    27 build.args              -c mod_chroot.c 
     25depends_lib         path:apache2/bin/apxs:apache2 
     26 
     27use_configure       no 
     28 
     29build.cmd           ${prefix}/apache2/bin/apxs 
     30build.args          -c mod_chroot.c 
    2831build.target 
    2932 
    3033destroot { 
    31         set mdir ${destroot}${prefix}/apache2/modules/ 
    32         xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name} ${mdir} 
    33         xinstall -m 644 ${worksrcpath}/.libs/mod_chroot.so ${mdir} 
    34         xinstall -m 644 -W ${worksrcpath} CAVEATS ChangeLog INSTALL LICENSE \ 
    35                 README README.Apache20 ${destroot}${prefix}/share/doc/${name} 
     34    set mdir ${destroot}${prefix}/apache2/modules/ 
     35    xinstall -d -m 755 ${destroot}${prefix}/share/doc/${name} ${mdir} 
     36    xinstall -m 644 ${worksrcpath}/.libs/mod_chroot.so ${mdir} 
     37    xinstall -m 644 -W ${worksrcpath} CAVEATS ChangeLog INSTALL LICENSE \ 
     38    README README.Apache20 ${destroot}${prefix}/share/doc/${name} 
    3639} 
    3740 
Note: See TracChangeset for help on using the changeset viewer.