Ticket #22976: Portfile-bluefish.diff

File Portfile-bluefish.diff, 1.9 KB (added by pf_moll@…, 14 years ago)
  • Portfile

    old new  
    44
    55name                    bluefish
    66conflicts               bluefish-devel
    7 version                 1.0.7
     7version                 2.0.0-rc1
    88categories              editors www
    99platforms               darwin
    1010maintainers             nomaintainer
     
    1515                        programmers. Bluefish supports many programming and markup languages \
    1616                        but it focuses on editing dynamic and interactive websites.
    1717
    18 master_sites            sourceforge:bluefish
     18dist_subdir             bluefish
     19distname                bluefish-${version}
    1920
    20 checksums               md5 2c3b3c9c8f8e32b9473dfd879f216dea \
    21                         sha1 c61d6271c49e9fa8c728724e6aadde33a227bdea \
    22                         rmd160 7ce8a7c8873cd0ef84dd6486551976593544a8dc
     21master_sites            sourceforge:bluefish \
     22                        http://www.bennewitz.com/bluefish/stable/source/
     23
     24checksums               md5     e1c1ee287b21daa336425caa1cca1b70 \
     25                        sha1    fccd35945f9b48531d3d80c7f5b4b7fbf4ab38b7 \
     26                        rmd160  f595b0e9c99bf08599f84383df73dd957e0905e7
    2327
    2428use_bzip2               yes
    2529
    2630depends_lib             port:gtk2 \
    27                         port:pcre
     31                        port:libxml2 \
     32                        port:pcre \
     33                        port:enchant
     34                       
     35universal_variant       no
    2836
    2937configure.args          --mandir=${prefix}/share/man \
    3038                        --infodir=${prefix}/share/info \
     
    4149    configure.args-append --disable-splash-screen
    4250}
    4351
     52variant nospellcheck description {Disable spell-check feature} {
     53    depends_lib-delete port:enchant
     54    configure.args-append --disable-spell-check
     55}
     56
    4457variant tidy {
    4558    depends_run bin:tidy:tidy
    46 }
    47  No newline at end of file
     59}