Ticket #21192: getmail.diff

File getmail.diff, 945 bytes (added by blb@…, 15 years ago)

diff to Portfile

  • Portfile

     
    11# $Id$
    22
    33PortSystem 1.0
    4 PortGroup python25 1.0
     4PortGroup python26 1.0
    55
    66name                    getmail
    77version                 4.11.0
     8revision                1
    89categories              mail python
    910platforms               darwin
    1011maintainers             mww
     
    2324dist_subdir             ${name}
    2425patchfiles              patch-setup.py.diff
    2526
     27post-destroot {
     28        foreach binfile [glob -tails -directory ${destroot}${python.prefix}/bin *] {
     29                ln -s ${python.prefix}/bin/${binfile} \
     30                        ${destroot}${prefix}/bin/${binfile}
     31        }
     32        foreach manfile [glob -tails -directory ${destroot}${python.prefix}/share/man/man1 *] {
     33                ln -s ${python.prefix}/share/man/man1/${manfile} \
     34                        ${destroot}${prefix}/share/man/man1/${manfile}
     35        }
     36        delete ${destroot}${prefix}/share/doc/${name}
     37        move ${destroot}${python.prefix}/share/doc/${name} \
     38                ${destroot}${prefix}/share/doc
     39}
     40