From 26f1515395e781c9a00654456599db862581ec1a Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 30 Jun 2021 17:07:31 -0500 Subject: [PATCH] app-accessibility/espeak-ng: new package, replaces app-accessibility/espeak Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: William Hubbs --- app-accessibility/espeak-ng/Manifest | 1 + .../espeak-ng/espeak-ng-1.50.ebuild | 80 +++++++++++++++++++ app-accessibility/espeak-ng/metadata.xml | 24 ++++++ 3 files changed, 105 insertions(+) create mode 100644 app-accessibility/espeak-ng/Manifest create mode 100644 app-accessibility/espeak-ng/espeak-ng-1.50.ebuild create mode 100644 app-accessibility/espeak-ng/metadata.xml diff --git a/app-accessibility/espeak-ng/Manifest b/app-accessibility/espeak-ng/Manifest new file mode 100644 index 0000000000000..a89c9b5ddaa2d --- /dev/null +++ b/app-accessibility/espeak-ng/Manifest @@ -0,0 +1 @@ +DIST espeak-ng-1.50.tar.gz 13665536 BLAKE2B c64c2a474374d4b6fe13bf3a99f5dfb661923c13ebd6c0bc323e7f26d9d90945c7075cc5c8f4b51e5db3303632c8c9daca7a65a1883e09d7c3faf63dd725ea3f SHA512 297dd80a6cdae3e2b8acf6823475220ce89d6a5fb68ea303156ad52cb3e7388049b6921759d4ed4e3d2e2ebd19bf931259e454f74a2ac0b7ecf4ce56c1d60c0c diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild new file mode 100644 index 0000000000000..4382cc4984e52 --- /dev/null +++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Software speech synthesizer for English, and some other languages" +HOMEPAGE="https://github.com/espeak-ng/espeak-ng" +SRC_URI="https://github.com/espeak-ng/espeak-ng/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+ Turkowski unicode" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+async +klatt l10n_ru l10n_zh man mbrola +sound" + +COMMON_DEPEND=" + !app-accessibility/espeak + mbrola? ( app-accessibility/mbrola ) + sound? ( media-libs/pcaudiolib ) +" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND} + sound? ( media-sound/sox ) +" +BDEPEND=" + virtual/pkgconfig + man? ( app-text/ronn ) +" + +DOCS=( CHANGELOG.md README.md docs ) + +src_prepare() { + default + + # disable failing tests + rm tests/{language-pronunciation,translate}.test || die + sed -i \ + -e "/language-pronunciation.check/d" \ + -e "/translate.check/d" \ + Makefile.am || die + + # https://github.com/espeak-ng/espeak-ng/issues/699 + # fixed in master + sed -i -e "s/int samplerate;/static int samplerate;/" src/espeak-ng.c || die + + eautoreconf +} + +src_configure() { + local econf_args + econf_args=( + $(use_with async) + $(use_with klatt) + $(use_with l10n_ru extdict-ru) + $(use_with l10n_zh extdict-zh) + $(use_with l10n_zh extdict-zhy) + $(use_with mbrola) + $(use_with sound pcaudiolib) + --without-libfuzzer + --without-sonic + --disable-rpath + --disable-static + ) + econf "${econf_args[@]}" +} + +src_compile() { + # see docs/building.md + emake -j1 +} + +src_test() { + emake check +} + +src_install() { + emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install + rm "${ED}"/usr/lib*/*.la || die +} diff --git a/app-accessibility/espeak-ng/metadata.xml b/app-accessibility/espeak-ng/metadata.xml new file mode 100644 index 0000000000000..8683d692251e9 --- /dev/null +++ b/app-accessibility/espeak-ng/metadata.xml @@ -0,0 +1,24 @@ + + + + + + Reece H. Dunn + msclrhd@gmail.com + + espeak-ng/espeak-ng + https://github.com/espeak-ng/espeak-ng/releases.atom + + + williamh@gentoo.org + William Hubbs + + + Enables asynchronous commands + Enables Klatt formant synthesis and implementation + Builds extended Russian Dictionary file + Builds extended Chinese (Mandarin and Cantonese) Dictionary files + Builds and installs manpage with app-text/ronn + Adds support for mbrola voices + +