Ticket #22976: Portfile-bluefish.diff
File Portfile-bluefish.diff, 1.9 KB (added by pf_moll@…, 15 years ago) |
---|
-
Portfile
old new 4 4 5 5 name bluefish 6 6 conflicts bluefish-devel 7 version 1.0.77 version 2.0.0-rc1 8 8 categories editors www 9 9 platforms darwin 10 10 maintainers nomaintainer … … 15 15 programmers. Bluefish supports many programming and markup languages \ 16 16 but it focuses on editing dynamic and interactive websites. 17 17 18 master_sites sourceforge:bluefish 18 dist_subdir bluefish 19 distname bluefish-${version} 19 20 20 checksums md5 2c3b3c9c8f8e32b9473dfd879f216dea \ 21 sha1 c61d6271c49e9fa8c728724e6aadde33a227bdea \ 22 rmd160 7ce8a7c8873cd0ef84dd6486551976593544a8dc 21 master_sites sourceforge:bluefish \ 22 http://www.bennewitz.com/bluefish/stable/source/ 23 24 checksums md5 e1c1ee287b21daa336425caa1cca1b70 \ 25 sha1 fccd35945f9b48531d3d80c7f5b4b7fbf4ab38b7 \ 26 rmd160 f595b0e9c99bf08599f84383df73dd957e0905e7 23 27 24 28 use_bzip2 yes 25 29 26 30 depends_lib port:gtk2 \ 27 port:pcre 31 port:libxml2 \ 32 port:pcre \ 33 port:enchant 34 35 universal_variant no 28 36 29 37 configure.args --mandir=${prefix}/share/man \ 30 38 --infodir=${prefix}/share/info \ … … 41 49 configure.args-append --disable-splash-screen 42 50 } 43 51 52 variant nospellcheck description {Disable spell-check feature} { 53 depends_lib-delete port:enchant 54 configure.args-append --disable-spell-check 55 } 56 44 57 variant tidy { 45 58 depends_run bin:tidy:tidy 46 } 47 No newline at end of file 59 }