Ticket #35524: devel_ninja.patch

File devel_ninja.patch, 654 bytes (added by 521E328E-2A13-4749-826A-E4EF4F22A0F1@…, 12 years ago)

Patch for devel/ninja/Portfile

  • Portfile

     
    3939build.args          --verbose
    4040build.env           CXX="${configure.cxx} [get_canonical_archflags cxx]"
    4141
     42variant bash_completion {
     43    depends_run-append  path:etc/bash_completion:bash-completion
     44
     45    post-destroot {
     46        xinstall -d ${destroot}${prefix}/etc/bash_completion.d
     47        xinstall -m 644 ${worksrcpath}/misc/bash-completion ${destroot}${prefix}/etc/bash_completion.d/ninja
     48    }
     49}
     50
    4251destroot {
    4352    xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin
    4453}