diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-04-04 13:47:39 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2022-04-04 13:47:39 +0000 |
| commit | 258e2f858b5ef66e7965cdc420d3a863d1641668 (patch) | |
| tree | dfaac16ba86113420c82008953095fc660c11004 /app-accessibility/espeak-ng | |
| parent | 51aa602db7695756c722e892f33a7cfa331cf060 (diff) | |
| download | baldeagleos-repo-258e2f858b5ef66e7965cdc420d3a863d1641668.tar.gz baldeagleos-repo-258e2f858b5ef66e7965cdc420d3a863d1641668.tar.xz baldeagleos-repo-258e2f858b5ef66e7965cdc420d3a863d1641668.zip | |
Adding metadata
Diffstat (limited to 'app-accessibility/espeak-ng')
6 files changed, 11 insertions, 249 deletions
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild deleted file mode 100644 index 9b3280273ec1..000000000000 --- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2022 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 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" -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-ng 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 - # The -j1s from compile/test/install may be droppable in next release - # (after 1.50). Several bugs have been fixed upstream in git. - emake -j1 -} - -src_test() { - emake check -j1 -} - -src_install() { - emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install -j1 - rm "${ED}"/usr/lib*/*.la || die -} diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild deleted file mode 100644 index 5e780ba05fea..000000000000 --- a/app-accessibility/espeak-ng/espeak-ng-1.50-r2.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2022 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 - https://dev.gentoo.org/~ulm/distfiles/${P}-ieee80.patch.xz" - -LICENSE="GPL-3+ unicode" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" -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-ng app-text/ronn ) ) -" - -PATCHES=( "${WORKDIR}"/${P}-ieee80.patch ) - -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 - # The -j1s from compile/test/install may be droppable in next release - # (after 1.50). Several bugs have been fixed upstream in git. - emake -j1 -} - -src_test() { - emake check -j1 -} - -src_install() { - emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install -j1 - rm "${ED}"/usr/lib*/*.la || die -} diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild index 016fdf386418..c3240b2d2dd3 100644 --- a/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild +++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r3.ebuild @@ -51,6 +51,9 @@ src_prepare() { } src_configure() { + # https://bugs.gentoo.org/836646 + export PULSE_SERVER="" + local econf_args econf_args=( $(use_with async) diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild deleted file mode 100644 index c9289793f7fa..000000000000 --- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2022 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 ~arm ~arm64 ~ppc ~ppc64 ~x86" -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 - # The -j1s from compile/test/install may be droppable in next release - # (after 1.50). Several bugs have been fixed upstream in git. - emake -j1 -} - -src_test() { - emake check -j1 -} - -src_install() { - emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install -j1 - rm "${ED}"/usr/lib*/*.la || die -} diff --git a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild index 345d810491c0..a9ea01fea59e 100644 --- a/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild +++ b/app-accessibility/espeak-ng/espeak-ng-1.51.ebuild @@ -45,6 +45,10 @@ src_prepare() { src_configure() { local econf_args + + # https://bugs.gentoo.org/836646 + export PULSE_SERVER="" + econf_args=( $(use_with async) $(use_with klatt) diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild index d55d1a306616..4dc30d2b5348 100644 --- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild +++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild @@ -51,6 +51,10 @@ src_prepare() { src_configure() { local econf_args + + # https://bugs.gentoo.org/836646 + export PULSE_SERVER="" + econf_args=( $(use_with async) $(use_with klatt) |
