Ticket #23861: Portfile-bluefish.diff

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

    old new  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
    12# $Id$
    23
    34PortSystem              1.0
    45
    56name                    bluefish
    67conflicts               bluefish-devel
    7 version                 1.0.7
     8version                 2.0.0
    89categories              editors www
    910platforms               darwin
    1011maintainers             nomaintainer
     
    1516                        programmers. Bluefish supports many programming and markup languages \
    1617                        but it focuses on editing dynamic and interactive websites.
    1718
    18 master_sites            sourceforge:bluefish
     19dist_subdir             bluefish
     20distname                bluefish-${version}
    1921
    20 checksums               md5 2c3b3c9c8f8e32b9473dfd879f216dea \
    21                         sha1 c61d6271c49e9fa8c728724e6aadde33a227bdea \
    22                         rmd160 7ce8a7c8873cd0ef84dd6486551976593544a8dc
     22master_sites            sourceforge:bluefish \
     23                        http://www.bennewitz.com/bluefish/stable/source/
     24
     25checksums               md5     ac9b1e8ef6d5691718a0daa6c78d5618 \
     26                        sha1    b92d79291f262d1bb01337f055ad16093cf4905b \
     27                        rmd160  6ec7ea007784fedd53cd5c604aa2c8e397717a1d
    2328
    2429use_bzip2               yes
    2530
    2631depends_lib             port:gtk2 \
     32                        port:libxml2 \
     33                        port:enchant \
    2734                        port:pcre
    2835
    2936configure.args          --mandir=${prefix}/share/man \
     
    4148    configure.args-append --disable-splash-screen
    4249}
    4350
     51variant no_spellcheck description {Disable spell-check feature} {
     52    depends_lib-delete port:enchant
     53    configure.args-append --disable-spell-check
     54}
     55
     56if {![variant_isset no_spellcheck]} {
     57    # enchant is not universal
     58    universal_variant no
     59}
     60
    4461variant tidy {
    4562    depends_run bin:tidy:tidy
    4663}