Ticket #23861: Portfile-bluefish.diff
File Portfile-bluefish.diff, 2.0 KB (added by pf_moll@…, 15 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 1 2 # $Id$ 2 3 3 4 PortSystem 1.0 4 5 5 6 name bluefish 6 7 conflicts bluefish-devel 7 version 1.0.78 version 2.0.0 8 9 categories editors www 9 10 platforms darwin 10 11 maintainers nomaintainer … … 15 16 programmers. Bluefish supports many programming and markup languages \ 16 17 but it focuses on editing dynamic and interactive websites. 17 18 18 master_sites sourceforge:bluefish 19 dist_subdir bluefish 20 distname bluefish-${version} 19 21 20 checksums md5 2c3b3c9c8f8e32b9473dfd879f216dea \ 21 sha1 c61d6271c49e9fa8c728724e6aadde33a227bdea \ 22 rmd160 7ce8a7c8873cd0ef84dd6486551976593544a8dc 22 master_sites sourceforge:bluefish \ 23 http://www.bennewitz.com/bluefish/stable/source/ 24 25 checksums md5 ac9b1e8ef6d5691718a0daa6c78d5618 \ 26 sha1 b92d79291f262d1bb01337f055ad16093cf4905b \ 27 rmd160 6ec7ea007784fedd53cd5c604aa2c8e397717a1d 23 28 24 29 use_bzip2 yes 25 30 26 31 depends_lib port:gtk2 \ 32 port:libxml2 \ 33 port:enchant \ 27 34 port:pcre 28 35 29 36 configure.args --mandir=${prefix}/share/man \ … … 41 48 configure.args-append --disable-splash-screen 42 49 } 43 50 51 variant no_spellcheck description {Disable spell-check feature} { 52 depends_lib-delete port:enchant 53 configure.args-append --disable-spell-check 54 } 55 56 if {![variant_isset no_spellcheck]} { 57 # enchant is not universal 58 universal_variant no 59 } 60 44 61 variant tidy { 45 62 depends_run bin:tidy:tidy 46 63 }