Ticket #24203: Portfile.diff

File Portfile.diff, 1.0 KB (added by rodney.rehm@…, 14 years ago)

changes made to original Portfile

  • php/php5-xhprof/Portfile

    old new  
    55PortGroup               php5extension 1.0
    66
    77php5extension.setup     xhprof 0.9.2 pecl
    8 revision                2
     8revision                3
    99categories-append       devel
    1010platforms               darwin
    1111maintainers             nomaintainer
     
    2424use_parallel_build      yes
    2525
    2626livecheck.regex         {>(\d+(?:\.\d+)*(?:p\d+)?)</a></th>}
     27
     28post-destroot {
     29    # Install php files not installed by the Makefile
     30    file mkdir ${prefix}/www/${name}/examples
     31    file copy ${worksrcpath}/../examples/ ${prefix}/www/${name}/examples
     32    file copy ${worksrcpath}/../xhprof_lib/ ${prefix}/www/${name}/xhprof_lib
     33    file copy ${worksrcpath}/../xhprof_html/ ${prefix}/www/${name}/xhprof_html
     34}
     35
     36variant graphviz description {Build with graphviz, support for callgraphs} {
     37    depends_lib-delete      port:graphviz
     38    patchfiles              callgraph_utils.php.diff
     39}