diff options
author | ormorph <roma251078@mail.ru> | 2024-04-17 20:59:46 +0300 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2024-04-26 02:57:58 +0200 |
commit | d6b1e54fc81daf6c61bd27221bf17cffd766ed4d (patch) | |
tree | 742360a065f0776f4bf6bd0eae51da15d0d975a2 /trinity-base/kttsd | |
parent | 9a76c13fddb55b0f202e048df62c939e06f39559 (diff) | |
download | tde-packaging-gentoo-d6b1e54fc81daf6c61bd27221bf17cffd766ed4d.tar.gz tde-packaging-gentoo-d6b1e54fc81daf6c61bd27221bf17cffd766ed4d.zip |
Removing version TDE-14.1.0
Signed-off-by: ormorph <roma251078@mail.ru>
(cherry picked from commit 4b3f0a054757e31efd942db76c6f28e4c26433dd)
Diffstat (limited to 'trinity-base/kttsd')
-rw-r--r-- | trinity-base/kttsd/Manifest | 1 | ||||
-rw-r--r-- | trinity-base/kttsd/kttsd-14.1.0.ebuild | 74 |
2 files changed, 0 insertions, 75 deletions
diff --git a/trinity-base/kttsd/Manifest b/trinity-base/kttsd/Manifest index d75a1fd8..f170c6a0 100644 --- a/trinity-base/kttsd/Manifest +++ b/trinity-base/kttsd/Manifest @@ -1,2 +1 @@ -DIST tdeaccessibility-trinity-14.1.0.tar.xz 6191924 BLAKE2B a3f8255b00c59091df78ec0893c24a1da74366faaaf4ac459fe7589840ebffcdbea9fe6f57bccf8869bfea0fadb79dcba40bf1d700e372afdd3714bf6e6dc328 SHA512 91f3b48f5361d850fc6ee480e67cb9fb00df463d146b9291b7f4c66749d90df742f868562c75978139a0ef5b1be8ea668e8b4042f8d9032b26bfed60bb56bba4 DIST tdeaccessibility-trinity-14.1.1.tar.xz 6192024 BLAKE2B 42356922784a4cf2abde4c0e932faf8bf24dc2829cd1507f4ad81de4615a6abe808cafabd1781e47020a03531b5ddb2478230e05f716e3a23bb72cb0431f6e0e SHA512 4e215d8b0de470b1820bb251e2d9d69eba54e828fb6d94b50e4f5ddf74fe1e8166dcabc48694bcba4ce11e46a8cc37fb3774941ef73c959f280b89ddc652808d diff --git a/trinity-base/kttsd/kttsd-14.1.0.ebuild b/trinity-base/kttsd/kttsd-14.1.0.ebuild deleted file mode 100644 index 31c4f6be..00000000 --- a/trinity-base/kttsd/kttsd-14.1.0.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 2022-2023 The Trinity Desktop Project -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -TRINITY_MODULE_NAME="tdeaccessibility" -TRINITY_MODULE_TYPE="core" -TRINITY_HANDBOOK="optional" -TRINITY_NEED_ARTS="optional" -TSM_EXTRACT_ALSO="kspeechsink" -inherit trinity-meta-2 - -DESCRIPTION="TDE text-to-speech subsystem" -if [[ ${PV} != *9999* ]] ; then - KEYWORDS="~amd64 ~arm64 ~x86" -fi - -IUSE="akode +alsa epos festival flite freetts hadifix kate" -REQUIRED_USE="|| ( akode alsa arts )" - -DEPEND=" akode? ( ~media-libs/akode-${PV} ) - alsa? ( media-libs/alsa-lib ) - ~trinity-base/kcontrol-${PV}" -RDEPEND=" ${DEPEND} - epos? ( app-accessibility/epos ) - flite? ( app-accessibility/flite ) - freetts? ( app-accessibility/freetts ) - hadifix? ( app-accessibility/mbrola ) - kate? ( trinity-base/kate )" - -# Missing dependencies: -# festival? ( app-accessibility/festival ) -# hadifix? ( app-accessibility/txt2pho ) -# Note: tha flags should me masked - -pkg_setup() { - if use festival; then - ewarn - ewarn "app-accessibility/festival was removed from portage. In order to use it" - ewarn "as your TTS engine you will have to provide the festival binary yourself." - fi - - if use hadifix; then - ewarn - ewarn "Hadifix TTS engine requires txt2pho utility which is not currently in portage." - ewarn "In order to use Hadifix as your TTS engine you will have to provide the binary yourself." - fi - - elog "Besides built-in support for several engines kttsd includes generic 'Command'" - elog "module which may utilize other 3rd-party TTS engines like:" - elog " - app-accessibility/espeak-ng" - elog " - app-accessibility/rhvoice" - elog " - app-accessibility/speech-dispatcher" - elog "and others. You are welcome to install one of them." - - trinity-meta-2_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DWITH_ALSA="$(usex alsa)" - -DWITH_AKODE="$(usex akode)" - -DBUILD_KTTSD_FESTIVAL="$(usex festival)" - -DBUILD_KTTSD_EPOS="$(usex epos)" - -DBUILD_KTTSD_FLITE="$(usex flite)" - -DBUILD_KTTSD_FREETTS="$(usex freetts)" - -DBUILD_KTTSD_HADIFIX=$(usex hadifix) - -DBUILD_KTTSD_KATE="$(usex kate)" - -DBUILD_KTTSD_COMMAND=ON - -DWITH_GSTREAMER=OFF # gstreamer support is not really finished - ) - - trinity-meta-2_src_configure -} |