app-editors/bluefish: add 2.2.19

rm patches merged
keep eautoconf because configure.ac is patched

Signed-off-by: Nicolas PARLANT <nicolas.parlant@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@gentoo.org>
This commit is contained in:
Nicolas PARLANT
2025-11-04 21:26:21 +01:00
committed by Sam James
parent 17676c95e7
commit 9ced2febad
2 changed files with 105 additions and 0 deletions

View File

@@ -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

View File

@@ -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."
}