Ticket #60957: patch-scons.diff

File patch-scons.diff, 1.7 KB (added by mf2k (Frank Schima), 4 years ago)
  • Portfile

    old new  
    44PortGroup           python 1.0
    55
    66name                scons
    7 version             3.1.2
     7version             4.0.1
    88revision            0
    9 checksums           rmd160  6052ef4ebd702ce7dc9888d50c163664201c377f \
    10                     sha256  7801f3f62f654528e272df780be10c0e9337e897650b62ddcee9f39fde13f8fb \
    11                     size    668298
     9checksums           rmd160  244be5230bedd1519e0e5987323b089a9d65588d \
     10                    sha256  722ed104b5c624ecdc89bd4e02b094d2b14d99d47b5d0501961e47f579a2007c \
     11                    size    2874481
    1212
    1313categories          devel python
    1414platforms           darwin
     
    2525                    compiler caches such as ccache.
    2626homepage            http://www.scons.org/
    2727
    28 python.default_version 27
     28python.default_version  38
    2929
    3030master_sites        sourceforge:project/scons/scons/${version}
    3131
    32 patchfiles          manpath.patch \
    33                     python-interp.patch
    34 post-patch {
    35     reinplace -W ${worksrcpath}/script "s|__PYTHON__|${python.bin}|" \
    36         scons scons-configure-cache scons-time sconsign
    37 }
    38 
    39 destroot.args       --install-man \
    40                     --no-version-script
    4132post-destroot {
    4233    xinstall -m 0755 -d \
    4334        ${destroot}${prefix}/share/doc/${name}
    4435    xinstall -m 0644 -W ${worksrcpath} \
    45         CHANGES.txt LICENSE.txt README.txt RELEASE.txt \
     36        LICENSE README.rst \
    4637        ${destroot}${prefix}/share/doc/${name}
    47     foreach manfile [glob -tails -directory ${destroot}${python.prefix}/share/man/man1 *] {
    48         ln -s ${python.prefix}/share/man/man1/${manfile} \
    49             ${destroot}${prefix}/share/man/man1/${manfile}
    50     }
    5138}