# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="C library for handling Kindle (MOBI) formats of ebook documents"
HOMEPAGE="https://github.com/bfabiszewski/libmobi"
SRC_URI="https://github.com/bfabiszewski/libmobi/releases/download/v${PV}/${P}.tar.gz"

LICENSE="LGPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+libxml2 +zlib"

DEPEND="
	libxml2? ( dev-libs/libxml2 )
	zlib? ( virtual/zlib )
"
RDEPEND="${DEPEND}"

src_configure() {
	econf \
		$(use_with libxml2) \
		$(use_with zlib)
}

src_install() {
	default
	find "${ED}" -name '*.la' -delete || die
}