Ticket #16770: protobuf-cpp.diff

File protobuf-cpp.diff, 1.1 KB (added by stromnov (Andrey Stromnov), 16 years ago)
  • Portfile

    old new  
    11# $Id: Portfile 39761 2008-09-03 18:40:40Z blair@macports.org $
    22
    3 PortSystem 1.0
     3PortSystem      1.0
    44
    55name            protobuf-cpp
    6 version         2.0.1
     6version         2.0.2
    77categories      devel
    88maintainers     blair
    99description     Encode data in an efficient yet extensible format.
     
    3030
    3131distname        protobuf-${version}
    3232use_bzip2       yes
    33 checksums       md5 add533032c5abffa378306fb580a18a4 \
    34                 sha1 59338ff41fea179e34aa8e30355f23ac87c628f4 \
    35                 rmd160 dbc4b14d9a2d2ec6f3e5bdcfe7fe84014a7089d5
     33checksums       md5     6674270b1d63c2c4b292644f48fede4e \
     34                sha1    b3ebd8895000bb11ded88b1f207cb799653befa0 \
     35                rmd160  bd76eeef45342a44b80a5bbf38ee28ccec021eea
    3636
    3737platforms       darwin
    3838
     39variant py25 description {Support for local python2.5} {
     40    depends_lib-append  port:python25
     41}
     42
     43post-patch {
     44    if {[variant_isset py25]} {
     45        reinplace "s|#!/usr/bin/python2.4|#!${prefix}/bin/python2.5|g" \
     46            ${worksrcpath}/src/google/protobuf/compiler/python/python_generator.cc
     47    }
     48}
     49
    3950post-destroot {
    4051        set docdir ${destroot}${prefix}/share/doc/${name}
    4152