commit:     5591329cd837bfd9199df8c4f4a275d018945fd5
Author:     Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Mon Feb 23 12:42:36 2026 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 16:50:15 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5591329c

app-editors/bluefish: add 2.4.0

the patch for gucharmap is now merged
warn about the migration to the XDG specification

Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/121
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-editors/bluefish/Manifest              |  1 +
 app-editors/bluefish/bluefish-2.4.0.ebuild | 98 ++++++++++++++++++++++++++++++
 2 files changed, 99 insertions(+)

diff --git a/app-editors/bluefish/Manifest b/app-editors/bluefish/Manifest
index aa8744a22f86..99946c7424c2 100644
--- a/app-editors/bluefish/Manifest
+++ b/app-editors/bluefish/Manifest
@@ -1,2 +1,3 @@
 DIST bluefish-2.2.17.tar.bz2 4822187 BLAKE2B 
ebfc5482035d9e8613f84086420bc2a03ab19a2977cf299ef2bfd76cb8d68c2faae03a6ac86332ea56c55ce3ee5934fb86697f7429e0f8dd77e19d63d9235d25
 SHA512 
9815316f265c48ea37afa513e6530470f4c4af37f27ddf0873a8b27c5a3f58b3927614e7465e950b4eb05a93f3daab458ccbc70547484539568c3ca1499f6a46
 DIST bluefish-2.2.19.tar.bz2 4819749 BLAKE2B 
6d706223583a62e0c6f39f47b1ce4250ce4b2fa27f4f07c7ff9b9ed04035dd0dcafc598503495281fdeef6726fdab375809bcb392c37b822d5241b8f32a317bc
 SHA512 
e66de6b0a7181b824d50a7765f045754e57d9039df08b874b0abc0a3bab43210162ff495ac778dbd8f3a707f70f16d44dbaa62c62b6d0aad3c8d110082fe36bd
+DIST bluefish-2.4.0.tar.bz2 5012280 BLAKE2B 
de52d797aba666adc29adc352c55706269e6ed5f72c3240c591b0913423c52f7f0afe2c5907ab8c162817074d346b8bddf1bd8292fa97f3ac869005443f38702
 SHA512 
ee2868a8dc765dfc808a42d6927eb964ba5c8cd34d2851c16d547d7dc89a1a312aabc38908de7fbbe56589989aa60183b6b6e6ba820603e237075fe9df985982

diff --git a/app-editors/bluefish/bluefish-2.4.0.ebuild 
b/app-editors/bluefish/bluefish-2.4.0.ebuild
new file mode 100644
index 000000000000..54a7d7b021a8
--- /dev/null
+++ b/app-editors/bluefish/bluefish-2.4.0.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..14} )
+inherit eapi9-ver python-single-r1 xdg
+
+DESCRIPTION="GTK HTML editor for the experienced web designer or programmer"
+HOMEPAGE="https://bluefish.openoffice.nl/";
+SRC_URI="https://www.bennewitz.com/bluefish/stable/source/${P}.tar.bz2";
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="gucharmap nls python spell"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+       dev-libs/glib:2
+       dev-libs/libxml2:=
+       x11-libs/cairo
+       x11-libs/gdk-pixbuf:2
+       x11-libs/gtk+:3
+       x11-libs/pango
+       virtual/zlib:=
+       gucharmap? ( gnome-extra/gucharmap:2.90 )
+       python? ( ${PYTHON_DEPS} )
+       spell? ( app-text/enchant:2 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+       dev-libs/libxml2
+       virtual/pkgconfig
+       x11-libs/gdk-pixbuf
+       nls? ( sys-devel/gettext )
+"
+
+# there actually is just some broken manpage checkup -> not bother
+RESTRICT="test"
+
+pkg_setup() {
+       use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+       export CONFIG_SHELL="${BASH}"
+       local myeconfargs=(
+               --disable-update-databases
+               --disable-xml-catalog-update
+               --with-freedesktop_org-appdata="${EPREFIX}"/usr/share/metainfo
+               --without-gtk2
+               $(use_with gucharmap charmap)
+               $(use_enable nls)
+               $(use_enable spell spell-check)
+               $(use_enable python)
+       )
+       econf "${myeconfargs[@]}"
+}
+
+src_install() {
+       default
+
+       if use python; then
+               python_fix_shebang "${ED}/usr/share/bluefish"
+               python_optimize "${ED}/usr/share/bluefish/plugins/zencoding"
+       fi
+
+       find "${ED}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+       xdg_pkg_postinst
+
+       einfo "Adding XML catalog entries..."
+       "${EPREFIX}"/usr/bin/xmlcatalog  --noout \
+               --add 'public' 'Bluefish/DTD/Bflang' 'bflang.dtd' \
+               --add 'system' 'http://bluefish.openoffice.nl/DTD/bflang.dtd' 
'bflang.dtd' \
+               --add 'rewriteURI' 'http://bluefish.openoffice.nl/DTD' 
'/usr/share/xml/bluefish-unstable' \
+               "${EROOT}"/etc/xml/catalog \
+               || ewarn "Failed to add XML catalog entries."
+
+       if ver_replacing -lt 2.4.0; then
+               ewarn "Config files are now in ~/.config and ~/.local instead 
of ~/.bluefish"
+       fi
+}
+
+pkg_postrm() {
+       xdg_pkg_postrm
+
+       einfo "Removing XML catalog entries..."
+       "${EPREFIX}"/usr/bin/xmlcatalog  --noout \
+               --del 'Bluefish/DTD/Bflang' \
+               --del 'http://bluefish.openoffice.nl/DTD/bflang.dtd' \
+               --del 'http://bluefish.openoffice.nl/DTD' \
+               "${EROOT}"/etc/xml/catalog \
+               || ewarn "Failed to remove XML catalog entries."
+}

Reply via email to