# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit toolchain-funcs DESCRIPTION="A tool to create DjVu files from PDF files" HOMEPAGE="https://github.com/jwilk-archive/pdf2djvu" SRC_URI="https://github.com/jwilk/${PN}/releases/download/${PV}/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="+graphicsmagick nls openmp" RDEPEND=" >=app-text/djvu-3.5.21:= >=app-text/poppler-0.16.7:= dev-libs/libxml2:= dev-libs/libxslt:= graphicsmagick? ( media-gfx/graphicsmagick:= ) " DEPEND="${RDEPEND} virtual/pkgconfig nls? ( sys-devel/gettext ) " DOCS=( doc/{changelog,credits,djvudigital,README} ) src_configure() { local openmp=--disable-openmp use openmp && tc-check-openmp && openmp=--enable-openmp econf \ ${openmp} \ $(use_enable nls) \ $(use_with graphicsmagick) }