You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-i18n/pyzy/pyzy-0.1.0-r3.ebuild

58 lines
1.2 KiB

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit autotools python-any-r1
PYZY_DB="${PN}-database-1.0.0"
DESCRIPTION="The Chinese PinYin and Bopomofo conversion library"
HOMEPAGE="https://github.com/pyzy/pyzy"
SRC_URI="https://dev.gentoo.org/~dlan/distfiles/${P}.tar.xz
https://dev.gentoo.org/~dlan/distfiles/${P}-patches.tar.xz
https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${PYZY_DB}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="boost doc opencc"
RDEPEND="dev-db/sqlite:3
dev-libs/glib:2
sys-apps/util-linux
boost? ( dev-libs/boost )
opencc? ( app-i18n/opencc:= )"
DEPEND="${RDEPEND}"
BDEPEND="
${PYTHON_DEPS}
sys-devel/autoconf-archive
doc? ( app-doc/doxygen )"
src_prepare() {
mv "${WORKDIR}"/db data/db/open-phrase || die
eapply "${WORKDIR}"/patches
default
eautoreconf
}
src_configure() {
econf \
$(use_enable boost) \
$(use_enable opencc) \
--enable-db-open-phrase \
DOXYGEN=$(usex doc doxygen true)
}
src_install() {
if use doc; then
HTML_DOCS=( docs/html/. )
fi
default
find "${ED}" -name '*.la' -delete || die
}