97 lines
2.4 KiB
Bash
97 lines
2.4 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{9..12} )
|
|
|
|
MY_P=${P/_/-}
|
|
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/${MY_P}.tar.bz2"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
|
IUSE="gucharmap nls python spell"
|
|
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
|
|
|
|
RDEPEND="sys-libs/zlib
|
|
x11-libs/gtk+:3
|
|
gucharmap? ( gnome-extra/gucharmap:2.90 )
|
|
python? ( ${PYTHON_DEPS} )
|
|
spell? ( app-text/enchant:2 )"
|
|
DEPEND="${RDEPEND}
|
|
x11-libs/pango"
|
|
BDEPEND=">=dev-libs/glib-2.24:2
|
|
dev-libs/libxml2:2
|
|
virtual/pkgconfig
|
|
nls? (
|
|
dev-util/intltool
|
|
sys-devel/gettext
|
|
)"
|
|
|
|
# there actually is just some broken manpage checkup -> not bother
|
|
RESTRICT="test"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-2.2.9-charmap_configure.patch"
|
|
)
|
|
|
|
pkg_setup() {
|
|
use python && python-single-r1_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# eautoreconf seems to no longer kill translation files.
|
|
eautoreconf
|
|
sed -i 's:gzip -n $< -c:gzip -n -c $<:' data/bflib/Makefile.* || die "Cannot fix makefile"
|
|
}
|
|
|
|
src_configure() {
|
|
CONFIG_SHELL="${BROOT}/bin/bash" econf \
|
|
--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)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
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."
|
|
}
|