commit:     9ced2febad0369005f29d3e19e0c631d938bf28d
Author:     Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Tue Nov  4 20:26:21 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 22 11:37:53 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ced2feb

app-editors/bluefish: add 2.2.19

rm patches merged
keep eautoconf because configure.ac is patched

Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/44492
Closes: https://github.com/gentoo/gentoo/pull/44492
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-editors/bluefish/Manifest               |   1 +
 app-editors/bluefish/bluefish-2.2.19.ebuild | 104 ++++++++++++++++++++++++++++
 2 files changed, 105 insertions(+)

diff --git a/app-editors/bluefish/Manifest b/app-editors/bluefish/Manifest
index 8982e487ecb2..aa8744a22f86 100644
--- a/app-editors/bluefish/Manifest
+++ b/app-editors/bluefish/Manifest
@@ -1 +1,2 @@
 DIST bluefish-2.2.17.tar.bz2 4822187 BLAKE2B 
ebfc5482035d9e8613f84086420bc2a03ab19a2977cf299ef2bfd76cb8d68c2faae03a6ac86332ea56c55ce3ee5934fb86697f7429e0f8dd77e19d63d9235d25
 SHA512 
9815316f265c48ea37afa513e6530470f4c4af37f27ddf0873a8b27c5a3f58b3927614e7465e950b4eb05a93f3daab458ccbc70547484539568c3ca1499f6a46
+DIST bluefish-2.2.19.tar.bz2 4819749 BLAKE2B 
6d706223583a62e0c6f39f47b1ce4250ce4b2fa27f4f07c7ff9b9ed04035dd0dcafc598503495281fdeef6726fdab375809bcb392c37b822d5241b8f32a317bc
 SHA512 
e66de6b0a7181b824d50a7765f045754e57d9039df08b874b0abc0a3bab43210162ff495ac778dbd8f3a707f70f16d44dbaa62c62b6d0aad3c8d110082fe36bd

diff --git a/app-editors/bluefish/bluefish-2.2.19.ebuild 
b/app-editors/bluefish/bluefish-2.2.19.ebuild
new file mode 100644
index 000000000000..85854267c6f2
--- /dev/null
+++ b/app-editors/bluefish/bluefish-2.2.19.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..14} )
+inherit autotools 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"
+
+PATCHES=(
+       # https://sourceforge.net/p/bluefish/tickets/111/
+       "${FILESDIR}/${PN}-2.2.9-charmap_configure.patch"
+)
+
+pkg_setup() {
+       use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+       default
+       eautoconf
+}
+
+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."
+}
+
+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