New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 79429


Ignore:
Timestamp:
06/13/11 01:34:41 (4 years ago)
Author:
ryandesign@…
Message:

pop3proxy: whitespace / formatting changes only, add modeline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/mail/pop3proxy/Portfile

    r79428 r79429  
     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                    pop3proxy 
     6name                pop3proxy 
    67version             2.0.0-beta8 
    7 categories              mail 
    8 platforms               darwin 
    9 maintainers             nomaintainer 
     8categories          mail 
     9platforms           darwin 
     10maintainers         nomaintainer 
    1011license             GPL-2+ 
    1112 
    12 description             application level gateway for the POP3 protocol 
    13 long_description        pop3.proxy is an application level gateway for the POP3 \ 
    14                                 protocol. Unlike generic TCP proxys (like tcpproxy) it looks \ 
    15                                 into the data stream watching that client and server fullfill \ 
    16                                 the protocol specification. pop3.proxy is based on RFC 1939. 
     13description         application level gateway for the POP3 protocol 
    1714 
    18 homepage                http://quietsche-entchen.de/cgi-bin/wiki.cgi/proxies/Pop3Proxy 
     15long_description    pop3.proxy is an application level gateway for the POP3 \ 
     16                    protocol. Unlike generic TCP proxys (like tcpproxy) it looks \ 
     17                    into the data stream watching that client and server fullfill \ 
     18                    the protocol specification. pop3.proxy is based on RFC 1939. 
     19 
     20homepage            http://quietsche-entchen.de/cgi-bin/wiki.cgi/proxies/Pop3Proxy 
    1921master_sites        http://quietsche-entchen.de/download/ 
    2022 
     
    2830                    patch-procinfo.c 
    2931 
    30 use_configure   no 
     32use_configure       no 
    3133 
    3234build.args          CC="${configure.cc} ${configure.cc_archflags}" 
    3335 
    34 destroot.destdir        prefix=${destroot}${prefix} 
     36destroot.destdir    prefix=${destroot}${prefix} 
    3537 
    3638post-destroot { 
    37         xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} 
    38         xinstall -m 644 -W ${worksrcpath} rfc1939.txt README LICENSE \ 
    39                 ${destroot}${prefix}/share/doc/${name} 
     39    xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} 
     40    xinstall -m 644 -W ${worksrcpath} rfc1939.txt README LICENSE \ 
     41        ${destroot}${prefix}/share/doc/${name} 
    4042} 
    4143 
    4244livecheck.type      regex 
    4345livecheck.url       [lindex ${master_sites} 0] 
    44 livecheck.regex     ${name}-(\[0-9a-z.-\]+)${extract.suffix} 
     46livecheck.regex     ${name}-(\[0-9a-z.- \]+)${extract.suffix} 
Note: See TracChangeset for help on using the changeset viewer.