Warning: there may be occasional oddness due to css and blog edits. **KNOWN ISSUE: possible hidden text**

Sunday, February 7, 2021

Proving an update to a port maintainer

Sometimes a port can be updated but it becomes overlooked by the maintainer.  You can update it yourself, even use the port framework to facilitate the process, but its better to also let the maintainer know of your success.  Remember that I mentioned exploring bluefish editor for work on this blog, and later more firmly deciding it would be the tool for further updates.  It turns out that bluefish was last updated on November first last year, which means it has been about three months but that the most recent version was released on November fifth!  Since I am using it, and the most recent version fixes a bug that causes a crash (which I may have encountered a number of times already), I decided to see if I could update it.

The first step, is as root, to change to that port directory to look at the Makefile, to see if it will be a simple adjustment to the version number, then change it to match that new version.

# Created by: Koop Mast <einekoai@chello.nl>
# $FreeBSD$

PORTNAME=       bluefish
PORTVERSION=    2.2.11
CATEGORIES=     www editors
MASTER_SITES=   http://www.bennewitz.com/bluefish/stable/source/ \
                http://bluefish.mrball.net/stable/source/

MAINTAINER=     woodsb02@FreeBSD.org
COMMENT=        HTML editor designed for the experienced web designer

There is no port epoch and no oddness with either the master site or anything else that might need to be adjusted, so we can change that portversion to 2.2.12 and on to the next step.  In the directory for the port there are a number of files, common to most other ports in the tree.  The two that we will need to re-create are distinfo and pkg-plist.

.                ..               distinfo         Makefile         pkg-descr        pkg-message      pkg-plist

The distinfo file keeps track of the hash of the tarball and some other things which will not be the same for the new tarball.

TIMESTAMP = 1604208681
SHA256 (bluefish-2.2.11.tar.bz2) = 454c877fc1dbddfcc65cc7ddaa3c5ceb17bc46e216baf7878f09dbf1dabdc2ff
SIZE (bluefish-2.2.11.tar.bz2) = 4181242

In the past I believe there was an easy way too, but back then when I created the distinfo file myself, I did it manually which is a bit of effort compared to the alternative.  First we need to hide (or remove but I prefer hide) so simply rename it to something like distinfo-hid or distinfo-2.2.11.  The next two steps are automated and simple:

make fetch make makesum

The fetch operation will use the information in the Makefile to obtain the tarball without questions, the makesum command uses the Makefile and the tarball it obtained to calculate the checksum, grab the timestamp, and check the filesize, which is all saved in a fresh distinfo in the current directory (that contains the Makefile).  As you can see below, it is entirely different than the old distinfo.

TIMESTAMP = 1612677197
SHA256 (bluefish-2.2.12.tar.bz2) = 0df9905ba2c601cd767fa53e147969e9c90bc0cc4c005c4011c150b248979e6a
SIZE (bluefish-2.2.12.tar.bz2) = 4180228

Now we have two choices.  If you use poudriere we can use the testport function after copying the distinfo to the appropriate poudriere port directory configured for builds.  I will skip ahead here to show you the output when I ran

poudriere testport -o www/bluefish -j 12amd64

because although it is an easy fix, I presently accomplish it outside the poudriere port directory as a regular build but with a new command which is your second choice.   If you build as usual using the updated Makefile and distinfo, assuming you already have an older bluefish installed you'll not see the error message as from poudriere:

gmake[1]: Leaving directory '/wrkdirs/usr/ports/www/bluefish/work/bluefish-2.2.12'
====> Compressing man pages (compress-man)
===========================================================================
====> Running Q/A tests (stage-qa)
====> Checking for pkg-plist issues (check-plist)
===> Parsing plist
===> Checking for items in STAGEDIR missing from pkg-plist
===> Checking for items in pkg-plist which are not in STAGEDIR
Error: Missing: %%DATADIR%%/lipsum/__init__.py
Error: Missing: %%DATADIR%%/lipsum/data/dictionary.txt
Error: Missing: %%DATADIR%%/lipsum/data/lipsum.xml
Error: Missing: %%DATADIR%%/lipsum/data/sample.txt
===> Error: Plist issues found.
*** Error code 1

Stop.
make: stopped in /usr/ports/www/bluefish
=>> Error: check-plist failures detected
build of www/bluefish | bluefish-2.2.12 ended at Sun Feb  7 01:08:48 CST 2021
build time: 00:03:08
!!! build failure encountered !!!
[00:03:27] Error: Build failed in phase: check-plist
[00:03:27] Cleaning up
12amd64-default: removed
12amd64-default-n: removed
[00:03:27] Unmounting file systems

So then, we know that the step we missed was to create the new pkg-plist but how is that done?  Maybe you went direct to poudriere but if not, and you didn't stop when it warned you that bluefish was already installed and explained what to do about it, you will need to create the stage directory inside the work directory again.   We do a simple make then once that completes with no attempt to install or do anything else because it was just that one word, make, we follow it with another simple command.

make makeplist >> pkg-plist

The file is quite large, and the first line is a reminder that we need to verify what the automation gave us.  We can do two other things, we can compare this new pkg-plist file to the old one, and note the message we have from the poudriere testport build.

/you/have/to/check/what/makeplist/gives/you
bin/bluefish
lib/bluefish/about.so
lib/bluefish/charmap.so
lib/bluefish/entities.so
lib/bluefish/htmlbar.so
lib/bluefish/infbrowser.so
lib/bluefish/snippets.so
lib/bluefish/zencoding.so
man/man1/bluefish.1.gz
share/appdata/bluefish.appdata.xml
share/applications/bluefish.desktop
%%DATADIR%%/bflang/JQuery.bfinc
%%DATADIR%%/bflang/ada.bflang2
%%DATADIR%%/bflang/all-html.bfinc
%%DATADIR%%/bflang/all-html5.bfinc
%%DATADIR%%/bflang/all-javascript.bfinc
%%DATADIR%%/bflang/all-php.bfinc
%%DATADIR%%/bflang/all-vbscript.bfinc
%%DATADIR%%/bflang/asp-vbscript.bflang2
%%DATADIR%%/bflang/asp.bflang2
%%DATADIR%%/bflang/bflang2.bflang2
%%DATADIR%%/bflang/c.bflang2
%%DATADIR%%/bflang/cfml.bflang2
%%DATADIR%%/bflang/chuck.bflang2
%%DATADIR%%/bflang/clojure.bflang2
%%DATADIR%%/bflang/cpp.bflang2
%%DATADIR%%/bflang/css-rules.bfinc
%%DATADIR%%/bflang/css-selectors.bfinc
%%DATADIR%%/bflang/css.bflang2
%%DATADIR%%/bflang/d.bflang2
%%DATADIR%%/bflang/diff.bflang2
%%DATADIR%%/bflang/go.bflang2
%%DATADIR%%/bflang/highlighter.bflang2
%%DATADIR%%/bflang/html.bflang2
%%DATADIR%%/bflang/html5.bflang2
%%DATADIR%%/bflang/java.bflang2
%%DATADIR%%/bflang/javascript.bflang2
%%DATADIR%%/bflang/json.bflang2
%%DATADIR%%/bflang/jsp.bflang2
%%DATADIR%%/bflang/latex.bflang2
%%DATADIR%%/bflang/lua.bflang2
%%DATADIR%%/bflang/mediawiki.bflang2
%%DATADIR%%/bflang/nsis.bflang2
%%DATADIR%%/bflang/octave.bflang2
%%DATADIR%%/bflang/pascal.bflang2
%%DATADIR%%/bflang/perl.bflang2
%%DATADIR%%/bflang/php.bflang2
%%DATADIR%%/bflang/po.bflang2
%%DATADIR%%/bflang/processing.bflang2
%%DATADIR%%/bflang/python.bflang2
%%DATADIR%%/bflang/r.bflang2
%%DATADIR%%/bflang/ruby.bflang2
%%DATADIR%%/bflang/sass.bflang2
%%DATADIR%%/bflang/scheme.bflang2
%%DATADIR%%/bflang/shell.bflang2
%%DATADIR%%/bflang/smarty.bflang2
%%DATADIR%%/bflang/sql.bflang2
%%DATADIR%%/bflang/svg.bflang2
%%DATADIR%%/bflang/text.bflang2
%%DATADIR%%/bflang/vala.bflang2
%%DATADIR%%/bflang/vbscript.bflang2
%%DATADIR%%/bflang/wordpress.bfinc
%%DATADIR%%/bflang/wordpress.bflang2
%%DATADIR%%/bflang/xhtml.bflang2
%%DATADIR%%/bflang/xml.bflang2
%%DATADIR%%/bflang/xslt.bflang2
%%DATADIR%%/bflib/bflib_DocBook_4_5.xml.gz
%%DATADIR%%/bflib/bflib_DocBook_5_0.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_0.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_1_Basic.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_1_Full.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_1_Tiny.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_Frameset.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_Strict.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_Transitional.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_W3C.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_1.xml.gz
%%DATADIR%%/bflib/bflib_css2.xml.gz
%%DATADIR%%/bflib/bflib_dom.xml.gz
%%DATADIR%%/bflib/bflib_php4.xml.gz
%%DATADIR%%/bflib/bflib_php5.xml.gz
%%DATADIR%%/bflib/bflib_php5_with_examples.xml.gz
%%DATADIR%%/bflib/bflib_python_2.3.xml.gz
%%DATADIR%%/bflib/bflib_xhtml.xml.gz
%%DATADIR%%/bluefish_splash.png
%%DATADIR%%/colorprofiles/Dark_theme
%%DATADIR%%/colorprofiles/Light_theme
%%DATADIR%%/css_decompressor
%%DATADIR%%/cssmin.py
%%DATADIR%%/default_accelmap
%%DATADIR%%/encodings
%%DATADIR%%/jsbeautifier/__init__.py
%%DATADIR%%/jsbeautifier/__version__.py
%%DATADIR%%/jsbeautifier/unpackers/__init__.py
%%DATADIR%%/jsbeautifier/unpackers/evalbased.py
%%DATADIR%%/jsbeautifier/unpackers/javascriptobfuscator.py
%%DATADIR%%/jsbeautifier/unpackers/myobfuscate.py
%%DATADIR%%/jsbeautifier/unpackers/packer.py
%%DATADIR%%/jsbeautifier/unpackers/urlencode.py
%%DATADIR%%/jsbeautify
%%DATADIR%%/jsmin.py
%%DATADIR%%/lorem-ipsum-generator
%%DATADIR%%/plugins/htmlbar/ui/htmlbar_menu_ui.xml
%%DATADIR%%/plugins/zencoding/__init__.py
%%DATADIR%%/plugins/zencoding/actions/__init__.py
%%DATADIR%%/plugins/zencoding/actions/basic.py
%%DATADIR%%/plugins/zencoding/actions/token.py
%%DATADIR%%/plugins/zencoding/actions/traverse.py
%%DATADIR%%/plugins/zencoding/filters/__init__.py
%%DATADIR%%/plugins/zencoding/filters/comment.py
%%DATADIR%%/plugins/zencoding/filters/css.py
%%DATADIR%%/plugins/zencoding/filters/escape.py
%%DATADIR%%/plugins/zencoding/filters/format-css.py
%%DATADIR%%/plugins/zencoding/filters/format.py
%%DATADIR%%/plugins/zencoding/filters/haml.py
%%DATADIR%%/plugins/zencoding/filters/html.py
%%DATADIR%%/plugins/zencoding/filters/single-line.py
%%DATADIR%%/plugins/zencoding/filters/trim.py
%%DATADIR%%/plugins/zencoding/filters/xsl.py
%%DATADIR%%/plugins/zencoding/html_matcher.py
%%DATADIR%%/plugins/zencoding/interface/__init__.py
%%DATADIR%%/plugins/zencoding/interface/editor.py
%%DATADIR%%/plugins/zencoding/interface/file.py
%%DATADIR%%/plugins/zencoding/parser/__init__.py
%%DATADIR%%/plugins/zencoding/parser/abbreviation.py
%%DATADIR%%/plugins/zencoding/parser/css.py
%%DATADIR%%/plugins/zencoding/parser/utils.py
%%DATADIR%%/plugins/zencoding/parser/xml.py
%%DATADIR%%/plugins/zencoding/resources.py
%%DATADIR%%/plugins/zencoding/utils.py
%%DATADIR%%/plugins/zencoding/zen_settings.py
%%DATADIR%%/snippets
%%DATADIR%%/templates/C_header
%%DATADIR%%/templates/C_header_GPL
%%DATADIR%%/templates/HTML_5
%%DATADIR%%/templates/PHP
%%DATADIR%%/templates/XHTML_1.0
%%DATADIR%%/ui/bluefish_menu_ui.xml
%%PORTDOCS%%%%DOCSDIR%%/bflang/sample.bflang2
share/icons/hicolor/128x128/apps/bluefish.png
share/icons/hicolor/128x128/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/16x16/apps/bluefish.png
share/icons/hicolor/16x16/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/192x192/apps/bluefish.png
share/icons/hicolor/192x192/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/22x22/apps/bluefish.png
share/icons/hicolor/22x22/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/256x256/apps/bluefish.png
share/icons/hicolor/256x256/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/32x32/apps/bluefish.png
share/icons/hicolor/32x32/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/36x36/apps/bluefish.png
share/icons/hicolor/36x36/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/48x48/apps/bluefish.png
share/icons/hicolor/48x48/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/512x512/apps/bluefish.png
share/icons/hicolor/512x512/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/64x64/apps/bluefish.png
share/icons/hicolor/64x64/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/72x72/apps/bluefish.png
share/icons/hicolor/72x72/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/96x96/apps/bluefish.png
share/icons/hicolor/96x96/mimetypes/application-x-bluefish-project.png
share/icons/hicolor/scalable/apps/bluefish-icon.svg
share/icons/hicolor/scalable/mimetypes/bluefish-project.svg
share/locale/ar/LC_MESSAGES/bluefish.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/bg/LC_MESSAGES/bluefish.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ca/LC_MESSAGES/bluefish.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/cs/LC_MESSAGES/bluefish.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/da/LC_MESSAGES/bluefish.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/de/LC_MESSAGES/bluefish.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/el/LC_MESSAGES/bluefish.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/en/LC_MESSAGES/bluefish.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/es/LC_MESSAGES/bluefish.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/eu/LC_MESSAGES/bluefish.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/fa/LC_MESSAGES/bluefish.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/fi/LC_MESSAGES/bluefish.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/fr/LC_MESSAGES/bluefish.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/gl/LC_MESSAGES/bluefish.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/hu/LC_MESSAGES/bluefish.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/it/LC_MESSAGES/bluefish.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ja/LC_MESSAGES/bluefish.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ko/LC_MESSAGES/bluefish.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/nb/LC_MESSAGES/bluefish.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/nl/LC_MESSAGES/bluefish.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/nn/LC_MESSAGES/bluefish.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/pl/LC_MESSAGES/bluefish.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/pt/LC_MESSAGES/bluefish.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/pt_BR/LC_MESSAGES/bluefish.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ro/LC_MESSAGES/bluefish.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ru/LC_MESSAGES/bluefish.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/sk/LC_MESSAGES/bluefish.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/sr/LC_MESSAGES/bluefish.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/sv/LC_MESSAGES/bluefish.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ta/LC_MESSAGES/bluefish.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/tr/LC_MESSAGES/bluefish.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/uk/LC_MESSAGES/bluefish.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/zh_CN/LC_MESSAGES/bluefish.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/zh_TW/LC_MESSAGES/bluefish.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/mime/packages/bluefish.xml
share/pixmaps/application-x-bluefish-project.png
share/pixmaps/bluefish.png
share/xml/bluefish/2.0/bflang2.rng
share/xml/bluefish/catalog.xml

If we run a diff -y old-pkg-plist new-pkg-plist we can see what is different, and it appears that we really need to make just one small adjustment.

bin/bluefish								bin/bluefish
lib/bluefish/about.so							lib/bluefish/about.so
%%GTK3%%lib/bluefish/charmap.so					|       lib/bluefish/charmap.so
lib/bluefish/entities.so						lib/bluefish/entities.so
lib/bluefish/htmlbar.so							lib/bluefish/htmlbar.so
lib/bluefish/infbrowser.so						lib/bluefish/infbrowser.so
lib/bluefish/snippets.so						lib/bluefish/snippets.so
lib/bluefish/zencoding.so						lib/bluefish/zencoding.so
man/man1/bluefish.1.gz							man/man1/bluefish.1.gz
share/appdata/bluefish.appdata.xml					share/appdata/bluefish.appdata.xml
share/applications/bluefish.desktop					share/applications/bluefish.desktop
%%DATADIR%%/bflang/JQuery.bfinc						%%DATADIR%%/bflang/JQuery.bfinc
%%DATADIR%%/bflang/ada.bflang2						%%DATADIR%%/bflang/ada.bflang2
%%DATADIR%%/bflang/all-html.bfinc					%%DATADIR%%/bflang/all-html.bfinc
%%DATADIR%%/bflang/all-html5.bfinc					%%DATADIR%%/bflang/all-html5.bfinc
%%DATADIR%%/bflang/all-javascript.bfinc					%%DATADIR%%/bflang/all-javascript.bfinc
%%DATADIR%%/bflang/all-php.bfinc					%%DATADIR%%/bflang/all-php.bfinc
%%DATADIR%%/bflang/all-vbscript.bfinc					%%DATADIR%%/bflang/all-vbscript.bfinc
%%DATADIR%%/bflang/asp-vbscript.bflang2					%%DATADIR%%/bflang/asp-vbscript.bflang2
%%DATADIR%%/bflang/asp.bflang2						%%DATADIR%%/bflang/asp.bflang2
%%DATADIR%%/bflang/bflang2.bflang2					%%DATADIR%%/bflang/bflang2.bflang2
%%DATADIR%%/bflang/c.bflang2						%%DATADIR%%/bflang/c.bflang2
%%DATADIR%%/bflang/cfml.bflang2						%%DATADIR%%/bflang/cfml.bflang2
%%DATADIR%%/bflang/chuck.bflang2					%%DATADIR%%/bflang/chuck.bflang2
%%DATADIR%%/bflang/clojure.bflang2					%%DATADIR%%/bflang/clojure.bflang2
%%DATADIR%%/bflang/cpp.bflang2						%%DATADIR%%/bflang/cpp.bflang2
%%DATADIR%%/bflang/css-rules.bfinc					%%DATADIR%%/bflang/css-rules.bfinc
%%DATADIR%%/bflang/css-selectors.bfinc					%%DATADIR%%/bflang/css-selectors.bfinc
%%DATADIR%%/bflang/css.bflang2						%%DATADIR%%/bflang/css.bflang2
%%DATADIR%%/bflang/d.bflang2						%%DATADIR%%/bflang/d.bflang2
%%DATADIR%%/bflang/diff.bflang2						%%DATADIR%%/bflang/diff.bflang2
%%DATADIR%%/bflang/go.bflang2						%%DATADIR%%/bflang/go.bflang2
%%DATADIR%%/bflang/highlighter.bflang2					%%DATADIR%%/bflang/highlighter.bflang2
%%DATADIR%%/bflang/html.bflang2						%%DATADIR%%/bflang/html.bflang2
%%DATADIR%%/bflang/html5.bflang2					%%DATADIR%%/bflang/html5.bflang2
%%DATADIR%%/bflang/java.bflang2						%%DATADIR%%/bflang/java.bflang2
%%DATADIR%%/bflang/javascript.bflang2					%%DATADIR%%/bflang/javascript.bflang2
%%DATADIR%%/bflang/json.bflang2						%%DATADIR%%/bflang/json.bflang2
%%DATADIR%%/bflang/jsp.bflang2						%%DATADIR%%/bflang/jsp.bflang2
%%DATADIR%%/bflang/latex.bflang2					%%DATADIR%%/bflang/latex.bflang2
%%DATADIR%%/bflang/lua.bflang2						%%DATADIR%%/bflang/lua.bflang2
%%DATADIR%%/bflang/mediawiki.bflang2					%%DATADIR%%/bflang/mediawiki.bflang2
%%DATADIR%%/bflang/nsis.bflang2						%%DATADIR%%/bflang/nsis.bflang2
%%DATADIR%%/bflang/octave.bflang2					%%DATADIR%%/bflang/octave.bflang2
%%DATADIR%%/bflang/pascal.bflang2					%%DATADIR%%/bflang/pascal.bflang2
%%DATADIR%%/bflang/perl.bflang2						%%DATADIR%%/bflang/perl.bflang2
%%DATADIR%%/bflang/php.bflang2						%%DATADIR%%/bflang/php.bflang2
%%DATADIR%%/bflang/po.bflang2						%%DATADIR%%/bflang/po.bflang2
%%DATADIR%%/bflang/processing.bflang2					%%DATADIR%%/bflang/processing.bflang2
%%DATADIR%%/bflang/python.bflang2					%%DATADIR%%/bflang/python.bflang2
%%DATADIR%%/bflang/r.bflang2						%%DATADIR%%/bflang/r.bflang2
%%DATADIR%%/bflang/ruby.bflang2						%%DATADIR%%/bflang/ruby.bflang2
%%DATADIR%%/bflang/sass.bflang2						%%DATADIR%%/bflang/sass.bflang2
%%DATADIR%%/bflang/scheme.bflang2					%%DATADIR%%/bflang/scheme.bflang2
%%DATADIR%%/bflang/shell.bflang2					%%DATADIR%%/bflang/shell.bflang2
%%DATADIR%%/bflang/smarty.bflang2					%%DATADIR%%/bflang/smarty.bflang2
%%DATADIR%%/bflang/sql.bflang2						%%DATADIR%%/bflang/sql.bflang2
%%DATADIR%%/bflang/svg.bflang2						%%DATADIR%%/bflang/svg.bflang2
%%DATADIR%%/bflang/text.bflang2						%%DATADIR%%/bflang/text.bflang2
%%DATADIR%%/bflang/vala.bflang2						%%DATADIR%%/bflang/vala.bflang2
%%DATADIR%%/bflang/vbscript.bflang2					%%DATADIR%%/bflang/vbscript.bflang2
%%DATADIR%%/bflang/wordpress.bfinc					%%DATADIR%%/bflang/wordpress.bfinc
%%DATADIR%%/bflang/wordpress.bflang2					%%DATADIR%%/bflang/wordpress.bflang2
%%DATADIR%%/bflang/xhtml.bflang2					%%DATADIR%%/bflang/xhtml.bflang2
%%DATADIR%%/bflang/xml.bflang2						%%DATADIR%%/bflang/xml.bflang2
%%DATADIR%%/bflang/xslt.bflang2						%%DATADIR%%/bflang/xslt.bflang2
%%DATADIR%%/bflib/bflib_DocBook_4_5.xml.gz				%%DATADIR%%/bflib/bflib_DocBook_4_5.xml.gz
%%DATADIR%%/bflib/bflib_DocBook_5_0.xml.gz				%%DATADIR%%/bflib/bflib_DocBook_5_0.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_0.xml.gz					%%DATADIR%%/bflib/bflib_SVG_1_0.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_1_Basic.xml.gz				%%DATADIR%%/bflib/bflib_SVG_1_1_Basic.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_1_Full.xml.gz				%%DATADIR%%/bflib/bflib_SVG_1_1_Full.xml.gz
%%DATADIR%%/bflib/bflib_SVG_1_1_Tiny.xml.gz				%%DATADIR%%/bflib/bflib_SVG_1_1_Tiny.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_Frameset.xml.gz			%%DATADIR%%/bflib/bflib_XHTML_1_0_Frameset.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_Strict.xml.gz				%%DATADIR%%/bflib/bflib_XHTML_1_0_Strict.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_Transitional.xml.gz			%%DATADIR%%/bflib/bflib_XHTML_1_0_Transitional.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_0_W3C.xml.gz				%%DATADIR%%/bflib/bflib_XHTML_1_0_W3C.xml.gz
%%DATADIR%%/bflib/bflib_XHTML_1_1.xml.gz				%%DATADIR%%/bflib/bflib_XHTML_1_1.xml.gz
%%DATADIR%%/bflib/bflib_css2.xml.gz					%%DATADIR%%/bflib/bflib_css2.xml.gz
%%DATADIR%%/bflib/bflib_dom.xml.gz					%%DATADIR%%/bflib/bflib_dom.xml.gz
%%DATADIR%%/bflib/bflib_php4.xml.gz					%%DATADIR%%/bflib/bflib_php4.xml.gz
%%DATADIR%%/bflib/bflib_php5.xml.gz					%%DATADIR%%/bflib/bflib_php5.xml.gz
%%DATADIR%%/bflib/bflib_php5_with_examples.xml.gz			%%DATADIR%%/bflib/bflib_php5_with_examples.xml.gz
%%DATADIR%%/bflib/bflib_python_2.3.xml.gz				%%DATADIR%%/bflib/bflib_python_2.3.xml.gz
%%DATADIR%%/bflib/bflib_xhtml.xml.gz					%%DATADIR%%/bflib/bflib_xhtml.xml.gz
%%DATADIR%%/bluefish_splash.png						%%DATADIR%%/bluefish_splash.png
%%DATADIR%%/colorprofiles/Dark_theme					%%DATADIR%%/colorprofiles/Dark_theme
%%DATADIR%%/colorprofiles/Light_theme					%%DATADIR%%/colorprofiles/Light_theme
%%DATADIR%%/css_decompressor						%%DATADIR%%/css_decompressor
%%DATADIR%%/cssmin.py							%%DATADIR%%/cssmin.py
%%DATADIR%%/default_accelmap						%%DATADIR%%/default_accelmap
%%DATADIR%%/encodings							%%DATADIR%%/encodings
%%DATADIR%%/jsbeautifier/__init__.py					%%DATADIR%%/jsbeautifier/__init__.py
%%DATADIR%%/jsbeautifier/__version__.py					%%DATADIR%%/jsbeautifier/__version__.py
%%DATADIR%%/jsbeautifier/unpackers/__init__.py				%%DATADIR%%/jsbeautifier/unpackers/__init__.py
%%DATADIR%%/jsbeautifier/unpackers/evalbased.py				%%DATADIR%%/jsbeautifier/unpackers/evalbased.py
%%DATADIR%%/jsbeautifier/unpackers/javascriptobfuscator.p		%%DATADIR%%/jsbeautifier/unpackers/javascriptobfuscator.p
%%DATADIR%%/jsbeautifier/unpackers/myobfuscate.py			%%DATADIR%%/jsbeautifier/unpackers/myobfuscate.py
%%DATADIR%%/jsbeautifier/unpackers/packer.py				%%DATADIR%%/jsbeautifier/unpackers/packer.py
%%DATADIR%%/jsbeautifier/unpackers/urlencode.py				%%DATADIR%%/jsbeautifier/unpackers/urlencode.py
%%DATADIR%%/jsbeautify							%%DATADIR%%/jsbeautify
%%DATADIR%%/jsmin.py							%%DATADIR%%/jsmin.py
%%DATADIR%%/lipsum/__init__.py					<
%%DATADIR%%/lipsum/data/dictionary.txt				<
%%DATADIR%%/lipsum/data/lipsum.xml				<
%%DATADIR%%/lipsum/data/sample.txt				<
%%DATADIR%%/lorem-ipsum-generator					%%DATADIR%%/lorem-ipsum-generator
%%DATADIR%%/plugins/htmlbar/ui/htmlbar_menu_ui.xml			%%DATADIR%%/plugins/htmlbar/ui/htmlbar_menu_ui.xml
%%DATADIR%%/plugins/zencoding/__init__.py				%%DATADIR%%/plugins/zencoding/__init__.py
%%DATADIR%%/plugins/zencoding/actions/__init__.py			%%DATADIR%%/plugins/zencoding/actions/__init__.py
%%DATADIR%%/plugins/zencoding/actions/basic.py				%%DATADIR%%/plugins/zencoding/actions/basic.py
%%DATADIR%%/plugins/zencoding/actions/token.py				%%DATADIR%%/plugins/zencoding/actions/token.py
%%DATADIR%%/plugins/zencoding/actions/traverse.py			%%DATADIR%%/plugins/zencoding/actions/traverse.py
%%DATADIR%%/plugins/zencoding/filters/__init__.py			%%DATADIR%%/plugins/zencoding/filters/__init__.py
%%DATADIR%%/plugins/zencoding/filters/comment.py			%%DATADIR%%/plugins/zencoding/filters/comment.py
%%DATADIR%%/plugins/zencoding/filters/css.py				%%DATADIR%%/plugins/zencoding/filters/css.py
%%DATADIR%%/plugins/zencoding/filters/escape.py				%%DATADIR%%/plugins/zencoding/filters/escape.py
%%DATADIR%%/plugins/zencoding/filters/format-css.py			%%DATADIR%%/plugins/zencoding/filters/format-css.py
%%DATADIR%%/plugins/zencoding/filters/format.py				%%DATADIR%%/plugins/zencoding/filters/format.py
%%DATADIR%%/plugins/zencoding/filters/haml.py				%%DATADIR%%/plugins/zencoding/filters/haml.py
%%DATADIR%%/plugins/zencoding/filters/html.py				%%DATADIR%%/plugins/zencoding/filters/html.py
%%DATADIR%%/plugins/zencoding/filters/single-line.py			%%DATADIR%%/plugins/zencoding/filters/single-line.py
%%DATADIR%%/plugins/zencoding/filters/trim.py				%%DATADIR%%/plugins/zencoding/filters/trim.py
%%DATADIR%%/plugins/zencoding/filters/xsl.py				%%DATADIR%%/plugins/zencoding/filters/xsl.py
%%DATADIR%%/plugins/zencoding/html_matcher.py				%%DATADIR%%/plugins/zencoding/html_matcher.py
%%DATADIR%%/plugins/zencoding/interface/__init__.py			%%DATADIR%%/plugins/zencoding/interface/__init__.py
%%DATADIR%%/plugins/zencoding/interface/editor.py			%%DATADIR%%/plugins/zencoding/interface/editor.py
%%DATADIR%%/plugins/zencoding/interface/file.py				%%DATADIR%%/plugins/zencoding/interface/file.py
%%DATADIR%%/plugins/zencoding/parser/__init__.py			%%DATADIR%%/plugins/zencoding/parser/__init__.py
%%DATADIR%%/plugins/zencoding/parser/abbreviation.py			%%DATADIR%%/plugins/zencoding/parser/abbreviation.py
%%DATADIR%%/plugins/zencoding/parser/css.py				%%DATADIR%%/plugins/zencoding/parser/css.py
%%DATADIR%%/plugins/zencoding/parser/utils.py				%%DATADIR%%/plugins/zencoding/parser/utils.py
%%DATADIR%%/plugins/zencoding/parser/xml.py				%%DATADIR%%/plugins/zencoding/parser/xml.py
%%DATADIR%%/plugins/zencoding/resources.py				%%DATADIR%%/plugins/zencoding/resources.py
%%DATADIR%%/plugins/zencoding/utils.py					%%DATADIR%%/plugins/zencoding/utils.py
%%DATADIR%%/plugins/zencoding/zen_settings.py				%%DATADIR%%/plugins/zencoding/zen_settings.py
%%DATADIR%%/snippets							%%DATADIR%%/snippets
%%DATADIR%%/templates/C_header						%%DATADIR%%/templates/C_header
%%DATADIR%%/templates/C_header_GPL					%%DATADIR%%/templates/C_header_GPL
%%DATADIR%%/templates/HTML_5						%%DATADIR%%/templates/HTML_5
%%DATADIR%%/templates/PHP						%%DATADIR%%/templates/PHP
%%DATADIR%%/templates/XHTML_1.0						%%DATADIR%%/templates/XHTML_1.0
%%DATADIR%%/ui/bluefish_menu_ui.xml					%%DATADIR%%/ui/bluefish_menu_ui.xml
%%PORTDOCS%%%%DOCSDIR%%/bflang/sample.bflang2				%%PORTDOCS%%%%DOCSDIR%%/bflang/sample.bflang2
share/icons/hicolor/128x128/apps/bluefish.png				share/icons/hicolor/128x128/apps/bluefish.png
share/icons/hicolor/128x128/mimetypes/application-x-bluef		share/icons/hicolor/128x128/mimetypes/application-x-bluef
share/icons/hicolor/16x16/apps/bluefish.png				share/icons/hicolor/16x16/apps/bluefish.png
share/icons/hicolor/16x16/mimetypes/application-x-bluefis		share/icons/hicolor/16x16/mimetypes/application-x-bluefis
share/icons/hicolor/192x192/apps/bluefish.png				share/icons/hicolor/192x192/apps/bluefish.png
share/icons/hicolor/192x192/mimetypes/application-x-bluef		share/icons/hicolor/192x192/mimetypes/application-x-bluef
share/icons/hicolor/22x22/apps/bluefish.png				share/icons/hicolor/22x22/apps/bluefish.png
share/icons/hicolor/22x22/mimetypes/application-x-bluefis		share/icons/hicolor/22x22/mimetypes/application-x-bluefis
share/icons/hicolor/256x256/apps/bluefish.png				share/icons/hicolor/256x256/apps/bluefish.png
share/icons/hicolor/256x256/mimetypes/application-x-bluef		share/icons/hicolor/256x256/mimetypes/application-x-bluef
share/icons/hicolor/32x32/apps/bluefish.png				share/icons/hicolor/32x32/apps/bluefish.png
share/icons/hicolor/32x32/mimetypes/application-x-bluefis		share/icons/hicolor/32x32/mimetypes/application-x-bluefis
share/icons/hicolor/36x36/apps/bluefish.png				share/icons/hicolor/36x36/apps/bluefish.png
share/icons/hicolor/36x36/mimetypes/application-x-bluefis		share/icons/hicolor/36x36/mimetypes/application-x-bluefis
share/icons/hicolor/48x48/apps/bluefish.png				share/icons/hicolor/48x48/apps/bluefish.png
share/icons/hicolor/48x48/mimetypes/application-x-bluefis		share/icons/hicolor/48x48/mimetypes/application-x-bluefis
share/icons/hicolor/512x512/apps/bluefish.png				share/icons/hicolor/512x512/apps/bluefish.png
share/icons/hicolor/512x512/mimetypes/application-x-bluef		share/icons/hicolor/512x512/mimetypes/application-x-bluef
share/icons/hicolor/64x64/apps/bluefish.png				share/icons/hicolor/64x64/apps/bluefish.png
share/icons/hicolor/64x64/mimetypes/application-x-bluefis		share/icons/hicolor/64x64/mimetypes/application-x-bluefis
share/icons/hicolor/72x72/apps/bluefish.png				share/icons/hicolor/72x72/apps/bluefish.png
share/icons/hicolor/72x72/mimetypes/application-x-bluefis		share/icons/hicolor/72x72/mimetypes/application-x-bluefis
share/icons/hicolor/96x96/apps/bluefish.png				share/icons/hicolor/96x96/apps/bluefish.png
share/icons/hicolor/96x96/mimetypes/application-x-bluefis		share/icons/hicolor/96x96/mimetypes/application-x-bluefis
share/icons/hicolor/scalable/apps/bluefish-icon.svg			share/icons/hicolor/scalable/apps/bluefish-icon.svg
share/icons/hicolor/scalable/mimetypes/bluefish-project.s		share/icons/hicolor/scalable/mimetypes/bluefish-project.s
share/locale/ar/LC_MESSAGES/bluefish.mo					share/locale/ar/LC_MESSAGES/bluefish.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/ar/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/ar/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/ar/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/ar/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/ar/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/ar/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ar/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/ar/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/bg/LC_MESSAGES/bluefish.mo					share/locale/bg/LC_MESSAGES/bluefish.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/bg/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/bg/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/bg/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/bg/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/bg/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/bg/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/bg/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/bg/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ca/LC_MESSAGES/bluefish.mo					share/locale/ca/LC_MESSAGES/bluefish.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/ca/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/ca/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/ca/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/ca/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/ca/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/ca/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ca/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/ca/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/cs/LC_MESSAGES/bluefish.mo					share/locale/cs/LC_MESSAGES/bluefish.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/cs/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/cs/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/cs/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/cs/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/cs/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/cs/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/cs/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/cs/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/da/LC_MESSAGES/bluefish.mo					share/locale/da/LC_MESSAGES/bluefish.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/da/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/da/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/da/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/da/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/da/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/da/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/da/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/da/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/de/LC_MESSAGES/bluefish.mo					share/locale/de/LC_MESSAGES/bluefish.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/de/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/de/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/de/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/de/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/de/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/de/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/de/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/de/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/el/LC_MESSAGES/bluefish.mo					share/locale/el/LC_MESSAGES/bluefish.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/el/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/el/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/el/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/el/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/el/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/el/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/el/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/el/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/en/LC_MESSAGES/bluefish.mo					share/locale/en/LC_MESSAGES/bluefish.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/en/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/en/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/en/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/en/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/en/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/en/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/en/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/en/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/es/LC_MESSAGES/bluefish.mo					share/locale/es/LC_MESSAGES/bluefish.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/es/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/es/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/es/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/es/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/es/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/es/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/es/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/es/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/eu/LC_MESSAGES/bluefish.mo					share/locale/eu/LC_MESSAGES/bluefish.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/eu/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/eu/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/eu/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/eu/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/eu/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/eu/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/eu/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/eu/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/fa/LC_MESSAGES/bluefish.mo					share/locale/fa/LC_MESSAGES/bluefish.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/fa/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/fa/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/fa/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/fa/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/fa/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/fa/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/fa/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/fa/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/fi/LC_MESSAGES/bluefish.mo					share/locale/fi/LC_MESSAGES/bluefish.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/fi/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/fi/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/fi/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/fi/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/fi/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/fi/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/fi/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/fi/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/fr/LC_MESSAGES/bluefish.mo					share/locale/fr/LC_MESSAGES/bluefish.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/fr/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/fr/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/fr/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/fr/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/fr/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/fr/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/fr/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/fr/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/gl/LC_MESSAGES/bluefish.mo					share/locale/gl/LC_MESSAGES/bluefish.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/gl/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/gl/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/gl/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/gl/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/gl/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/gl/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/gl/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/gl/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/hu/LC_MESSAGES/bluefish.mo					share/locale/hu/LC_MESSAGES/bluefish.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/hu/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/hu/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/hu/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/hu/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/hu/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/hu/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/hu/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/hu/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/it/LC_MESSAGES/bluefish.mo					share/locale/it/LC_MESSAGES/bluefish.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/it/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/it/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/it/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/it/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/it/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/it/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/it/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/it/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ja/LC_MESSAGES/bluefish.mo					share/locale/ja/LC_MESSAGES/bluefish.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/ja/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/ja/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/ja/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/ja/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/ja/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/ja/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ja/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/ja/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ko/LC_MESSAGES/bluefish.mo					share/locale/ko/LC_MESSAGES/bluefish.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/ko/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/ko/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/ko/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/ko/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/ko/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/ko/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ko/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/ko/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/nb/LC_MESSAGES/bluefish.mo					share/locale/nb/LC_MESSAGES/bluefish.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/nb/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/nb/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/nb/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/nb/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/nb/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/nb/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/nb/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/nb/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/nl/LC_MESSAGES/bluefish.mo					share/locale/nl/LC_MESSAGES/bluefish.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/nl/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/nl/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/nl/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/nl/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/nl/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/nl/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/nl/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/nl/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/nn/LC_MESSAGES/bluefish.mo					share/locale/nn/LC_MESSAGES/bluefish.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/nn/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/nn/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/nn/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/nn/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/nn/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/nn/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/nn/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/nn/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/pl/LC_MESSAGES/bluefish.mo					share/locale/pl/LC_MESSAGES/bluefish.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/pl/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/pl/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/pl/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/pl/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/pl/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/pl/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/pl/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/pl/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/pt/LC_MESSAGES/bluefish.mo					share/locale/pt/LC_MESSAGES/bluefish.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/pt/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/pt/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/pt/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/pt/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/pt/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/pt/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/pt/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/pt/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/pt_BR/LC_MESSAGES/bluefish.mo				share/locale/pt_BR/LC_MESSAGES/bluefish.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_charmap.mo		share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_entities.m		share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_entities.m
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_htmlbar.mo		share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_infbrowser		share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_infbrowser
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_snippets.m		share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_snippets.m
share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_zencoding.		share/locale/pt_BR/LC_MESSAGES/bluefish_plugin_zencoding.
share/locale/ro/LC_MESSAGES/bluefish.mo					share/locale/ro/LC_MESSAGES/bluefish.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/ro/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/ro/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/ro/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/ro/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/ro/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/ro/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ro/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/ro/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ru/LC_MESSAGES/bluefish.mo					share/locale/ru/LC_MESSAGES/bluefish.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/ru/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/ru/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/ru/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/ru/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/ru/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/ru/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ru/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/ru/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/sk/LC_MESSAGES/bluefish.mo					share/locale/sk/LC_MESSAGES/bluefish.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/sk/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/sk/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/sk/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/sk/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/sk/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/sk/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/sk/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/sk/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/sr/LC_MESSAGES/bluefish.mo					share/locale/sr/LC_MESSAGES/bluefish.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/sr/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/sr/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/sr/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/sr/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/sr/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/sr/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/sr/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/sr/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/sv/LC_MESSAGES/bluefish.mo					share/locale/sv/LC_MESSAGES/bluefish.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/sv/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/sv/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/sv/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/sv/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/sv/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/sv/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/sv/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/sv/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/ta/LC_MESSAGES/bluefish.mo					share/locale/ta/LC_MESSAGES/bluefish.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/ta/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/ta/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/ta/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/ta/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/ta/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/ta/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/ta/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/ta/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/tr/LC_MESSAGES/bluefish.mo					share/locale/tr/LC_MESSAGES/bluefish.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/tr/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/tr/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/tr/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/tr/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/tr/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/tr/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/tr/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/tr/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/uk/LC_MESSAGES/bluefish.mo					share/locale/uk/LC_MESSAGES/bluefish.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/uk/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_charmap.mo			share/locale/uk/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_entities.mo			share/locale/uk/LC_MESSAGES/bluefish_plugin_entities.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_htmlbar.mo			share/locale/uk/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_infbrowser.mo		share/locale/uk/LC_MESSAGES/bluefish_plugin_infbrowser.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_snippets.mo			share/locale/uk/LC_MESSAGES/bluefish_plugin_snippets.mo
share/locale/uk/LC_MESSAGES/bluefish_plugin_zencoding.mo		share/locale/uk/LC_MESSAGES/bluefish_plugin_zencoding.mo
share/locale/zh_CN/LC_MESSAGES/bluefish.mo				share/locale/zh_CN/LC_MESSAGES/bluefish.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_charmap.mo		share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_entities.m		share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_entities.m
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_htmlbar.mo		share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_infbrowser		share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_infbrowser
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_snippets.m		share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_snippets.m
share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_zencoding.		share/locale/zh_CN/LC_MESSAGES/bluefish_plugin_zencoding.
share/locale/zh_TW/LC_MESSAGES/bluefish.mo				share/locale/zh_TW/LC_MESSAGES/bluefish.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_about.mo			share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_about.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_charmap.mo		share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_charmap.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_entities.m		share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_entities.m
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_htmlbar.mo		share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_htmlbar.mo
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_infbrowser		share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_infbrowser
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_snippets.m		share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_snippets.m
share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_zencoding.		share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_zencoding.
share/mime/packages/bluefish.xml					share/mime/packages/bluefish.xml
share/pixmaps/application-x-bluefish-project.png			share/pixmaps/application-x-bluefish-project.png
share/pixmaps/bluefish.png						share/pixmaps/bluefish.png
share/xml/bluefish/2.0/bflang2.rng					share/xml/bluefish/2.0/bflang2.rng
share/xml/bluefish/catalog.xml						share/xml/bluefish/catalog.xml

We can assume that the new build may not include some files, so for us, we can ignore that some files are missing in the list on the right, but what is more important is the third line.  This is a special variable relating to the gtk install directory, similar variables are mentioned in the porter's handbook under 8.5.  Automated Package List Creation.  Now that the pkg-plist is updated, along with the distinfo, we can build with poudriere testport or the normal build, as either make install clean or make reinstall clean depending on whether you still have the old bluefish installed.  How do we tell the port maintainer about our success and what should we include? We file an appropriate bug report and we attach or paste the contents of the output for

pkg info bluefish
bluefish-2.2.12
Name           : bluefish
Version        : 2.2.12
Installed on   : Sun Feb  7 07:26:34 2021 CST
Origin         : www/bluefish
Architecture   : FreeBSD:12:amd64
Prefix         : /usr/local
Categories     : editors www
Licenses       : GPLv3+
Maintainer     : woodsb02@FreeBSD.org
WWW            : http://bluefish.openoffice.nl/
Comment        : HTML editor designed for the experienced web designer
Options        :
        DEBUG          : off
        DOCS           : on
        GTK2           : off
        GTK3           : on
        TIDY           : on
Shared Libs required:
        libgdk-3.so.0
        libglib-2.0.so.0
        libgucharmap_2_90.so.7
        libgobject-2.0.so.0
        libpango-1.0.so.0
        libcairo.so.2
        libgtk-3.so.0
        libxml2.so.2
        libintl.so.8
        libcairo-gobject.so.2
        libatk-1.0.so.0
        libgmodule-2.0.so.0
        libgthread-2.0.so.0
        libenchant.so.1
        libgdk_pixbuf-2.0.so.0
        libpython3.7m.so.1.0
        libgio-2.0.so.0
        libpangocairo-1.0.so.0
Annotations    :
        FreeBSD_version: 1202504
        repo_type      : binary
        repository     : poudriere
Flat size      : 9.21MiB
Description    :
Bluefish is a powerful editor targeted towards programmers and web
developers, with many options to write websites, scripts and programming
code. Bluefish supports many programming and markup languages and has
many features, but is still a very fast and lightweight application.

WWW: http://bluefish.openoffice.nl/
The bug report all filled out.

I challenge you all to do the same process with any of your more favorite ports which you ever discover might be in need of an update.  If it is not such a simple effort, like my other attempt for enlightenment, you can beat on it a bit more to succeed, your mileage will vary, I cannot guess what you will run into.  However, if you eventually succeed, just as when it is simple, gather the information and submit a bug report.  You will need to make an account on the FreeBSD bugzilla site but you can certainly use freshports report bug icon freshports bug report icon for that port entry to get there.

The response can be quick.  I'm sure that the more work we do the more likely the maintainer will respond with an update in a fairly short timeframe.   As you can see, I've also gained some constructive criticism.   I was unaware of the svn diff function, but now that I know about it I can use it next time.   We know there will be a next time and you know about svn diff now too.  My word choice also lead to a minor misunderstanding, as we know that I generated both the pkg-plist and distinfo.  And nearly as quick as producing this blog post, we all have an updated bluefish to use from ports!

No comments:

Post a Comment

Thank you for your interest!

Frequently viewed this week