public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/speech-dispatcher/
Date: Sun,  2 Oct 2022 05:34:42 +0000 (UTC)	[thread overview]
Message-ID: <1664688786.46b12d8861e6beeeb827f2468fe061477820e732.williamh@gentoo> (raw)

commit:     46b12d8861e6beeeb827f2468fe061477820e732
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  2 05:33:06 2022 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Oct  2 05:33:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46b12d88

app-accessibility/speech-dispatcher: add 0.11.3

Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 app-accessibility/speech-dispatcher/Manifest       |   1 +
 .../speech-dispatcher-0.11.3.ebuild                | 122 +++++++++++++++++++++
 2 files changed, 123 insertions(+)

diff --git a/app-accessibility/speech-dispatcher/Manifest b/app-accessibility/speech-dispatcher/Manifest
index 158a24b2f38f..e86145207c6b 100644
--- a/app-accessibility/speech-dispatcher/Manifest
+++ b/app-accessibility/speech-dispatcher/Manifest
@@ -1,3 +1,4 @@
 DIST speech-dispatcher-0.11.1.tar.gz 6548489 BLAKE2B fd4e05c51b80991bdd5d27ecf967946cfde98f978462e909f193c14eab51f3cae047d281c3e2896b3ddeeb4e045ceb72f51e5dbfaf3f9ea8a818f8146cb5e625 SHA512 859911d7db5660423bc7911eacbe8e7a9c3104df97478cbbca48ca5fd6ec018113172d49bc66781680433c77b4d2af43578c9b0f11409e2ba7ac618deb31d7cf
 DIST speech-dispatcher-0.11.2.tar.gz 7147526 BLAKE2B 6b11949736275d900e5e1d3909fab51fc04fbb45baf470a4c98aed19f61b7adb8cedf6b11f1a1aa69d9625383627beab4122c74ec78d9c07a5d0ddf4646669d6 SHA512 038ecaa5b9d56e3f915ec49fe7768cb4eebe1c8be79b95635f09fb3f6067e4c0ade13d2dd355e0b326579dcdf509dd180889b27282410b6bb252a2f642f028d4
+DIST speech-dispatcher-0.11.3.tar.gz 7150632 BLAKE2B 92bad589e453a243362a9e0142d2897b9651fa648012f2bd7ef00bc1ded389fd2c01b6f38f19002289357f7aa6361a6e7fa3ee35ec2ad7c044f34d87e7f2c409 SHA512 e9f5b862066c0292230fda32f16782f9a2d66e8d0c0e3aa0ccdb4628c1182661d2f40894f480ae5206af7fbbc49338189312afe02092f5d472095b053afd75c7
 DIST speech-dispatcher-0.9.1.tar.gz 1662222 BLAKE2B 03c3d79a9cbbe7e549f638992fb276ab2270a45a057708721666257699479b3feb81daddf26d8032ba3f7b9ab6b836c7f582ee22a532ff018c99820af3864d87 SHA512 35adb353d22b8dff8884cb20f3836f96f4f74b272bbd442d522a10a3d3b91a0da6705e6c216764f295208b5446c2077da620de2a81cafe5a0c4dd826e33753c2

diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.3.ebuild b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.3.ebuild
new file mode 100644
index 000000000000..c55d7ced1ded
--- /dev/null
+++ b/app-accessibility/speech-dispatcher/speech-dispatcher-0.11.3.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+inherit python-r1 systemd
+
+DESCRIPTION="Speech synthesis interface"
+HOMEPAGE="https://freebsoft.org/speechd"
+SRC_URI="https://github.com/brailcom/speechd/releases/download/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="alsa ao espeak +espeak-ng flite nas pulseaudio python"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DEPEND="python? ( ${PYTHON_DEPS} )
+	>=dev-libs/dotconf-1.3
+	>=dev-libs/glib-2.36:2
+	>=media-libs/libsndfile-1.0.2
+	alsa? ( media-libs/alsa-lib )
+	ao? ( media-libs/libao )
+	espeak? ( app-accessibility/espeak )
+	espeak-ng? ( app-accessibility/espeak-ng )
+	flite? ( app-accessibility/flite )
+	nas? ( media-libs/nas )
+	pulseaudio? ( media-sound/pulseaudio )"
+RDEPEND="${DEPEND}
+	python? ( dev-python/pyxdg[${PYTHON_USEDEP}] )"
+BDEPEND="
+	sys-apps/help2man
+	>=sys-devel/gettext-0.19.8
+	virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.11.1-include-pthread_h.patch
+)
+
+src_configure() {
+	# bug 573732
+	export GIT_CEILING_DIRECTORIES="${WORKDIR}"
+
+	local myeconfargs=(
+		--disable-ltdl
+		--disable-python
+		--disable-static
+		--with-baratinoo=no
+		--with-ibmtts=no
+		--with-kali=no
+		--with-pico=no
+		--with-voxin=no
+		$(use_with alsa)
+		$(use_with ao libao)
+		$(use_with espeak)
+		$(use_with espeak-ng)
+		$(use_with flite)
+		$(use_with nas)
+		$(use_with pulseaudio pulse)
+		--with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+	)
+	econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+	use python && python_copy_sources
+
+	emake
+
+	if use python; then
+		building() {
+			cd src/api/python || die
+			emake \
+				pyexecdir="$(python_get_sitedir)" \
+				pythondir="$(python_get_sitedir)"
+		}
+		python_foreach_impl run_in_build_dir building
+	fi
+}
+
+src_install() {
+	default
+
+	if use python; then
+		installation() {
+			cd src/api/python || die
+			emake \
+				DESTDIR="${D}" \
+				pyexecdir="$(python_get_sitedir)" \
+				pythondir="$(python_get_sitedir)" \
+				install
+		}
+		python_foreach_impl run_in_build_dir installation
+		python_replicate_script "${ED}"/usr/bin/spd-conf
+		python_foreach_impl python_optimize
+	fi
+
+	find "${D}" -name '*.la' -type f -delete || die
+}
+
+pkg_postinst() {
+	local editconfig="n"
+	if ! use espeak-ng; then
+		ewarn "You have disabled espeak-ng, which is speech-dispatcher's"
+		ewarn "default speech synthesizer."
+		ewarn
+		editconfig="y"
+	fi
+	if ! use pulseaudio; then
+		ewarn "You have disabled pulseaudio support."
+		ewarn "pulseaudio is speech-dispatcher's default audio subsystem."
+		ewarn
+		editconfig="y"
+	fi
+	if [[ "${editconfig}" == "y" ]]; then
+		ewarn "You must edit ${EROOT}/etc/speech-dispatcher/speechd.conf"
+		ewarn "and make sure the settings there match your system."
+		ewarn
+	fi
+}


             reply	other threads:[~2022-10-02  5:34 UTC|newest]

Thread overview: 91+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-02  5:34 William Hubbs [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-12 17:49 [gentoo-commits] repo/gentoo:master commit in: app-accessibility/speech-dispatcher/ Arthur Zamarin
2024-09-12 16:16 Jakov Smolić
2024-09-09 20:44 Arthur Zamarin
2024-09-09 13:46 Sam James
2024-09-09 13:46 Sam James
2024-09-09 13:46 Sam James
2024-09-09 13:46 Sam James
2024-08-09 10:35 Pacho Ramos
2024-05-09  9:53 Pacho Ramos
2023-09-20  0:27 Andreas K. Hüttel
2023-05-31 18:24 Andreas Sturmlechner
2023-05-06 14:18 Sam James
2022-12-11 18:19 Arthur Zamarin
2022-12-10  8:50 Arthur Zamarin
2022-12-10  4:48 Sam James
2022-12-10  4:48 Sam James
2022-12-10  4:48 Sam James
2022-12-10  4:48 Sam James
2022-12-10  4:48 Sam James
2022-12-10  4:35 Sam James
2022-11-02  6:20 Agostino Sarubbo
2022-11-01  8:30 Agostino Sarubbo
2022-10-31 18:37 Sam James
2022-10-31 18:26 Arthur Zamarin
2022-10-31 18:24 Sam James
2022-10-31 18:24 Sam James
2022-10-31 18:24 Sam James
2022-10-31 16:39 Jakov Smolić
2022-10-09  6:17 Miroslav Šulc
2022-10-08 10:12 Agostino Sarubbo
2022-10-08 10:11 Agostino Sarubbo
2022-10-08 10:10 Agostino Sarubbo
2022-10-08 10:10 Agostino Sarubbo
2022-10-08 10:09 Agostino Sarubbo
2022-10-08 10:08 Agostino Sarubbo
2022-10-08 10:08 Agostino Sarubbo
2022-09-01  2:57 Sam James
2022-08-12 14:27 Sam James
2022-05-26  5:20 WANG Xuerui
2022-03-07  3:51 Sam James
2022-03-07  3:47 Sam James
2022-03-02  9:08 Agostino Sarubbo
2022-03-01 11:42 Jakov Smolić
2022-03-01 11:30 Agostino Sarubbo
2022-03-01 11:29 Agostino Sarubbo
2022-03-01 11:28 Agostino Sarubbo
2022-02-15 18:31 Matt Turner
2022-01-31  2:36 Yixun Lan
2022-01-29  7:20 Sam James
2022-01-29  7:10 Sam James
2022-01-29  4:32 Sam James
2022-01-27  6:12 William Hubbs
2021-08-10  8:58 Yixun Lan
2021-04-19  2:10 Matt Turner
2021-03-13 17:24 David Seifert
2021-01-04 11:11 Andreas K. Hüttel
2020-09-04 15:44 Sam James
2020-08-29 18:18 Sam James
2020-08-29 17:57 Thomas Deutschmann
2020-08-25 17:48 Sergei Trofimovich
2020-08-25 12:45 Sam James
2020-08-22 11:26 Agostino Sarubbo
2020-08-22  5:48 Agostino Sarubbo
2020-07-13  0:30 Andreas Sturmlechner
2020-04-19  8:15 Mart Raudsepp
2020-03-29 17:56 Mart Raudsepp
2020-02-13 19:52 Sergei Trofimovich
2020-02-12  7:51 Agostino Sarubbo
2020-02-12  7:47 Agostino Sarubbo
2020-02-11 19:51 Agostino Sarubbo
2020-02-11 16:01 Agostino Sarubbo
2019-10-20 11:49 David Seifert
2019-08-11 14:44 David Seifert
2019-08-04 13:44 Alexey Shvetsov
2018-12-07 21:56 Mart Raudsepp
2018-11-16 20:25 Mike Gilbert
2018-08-25 21:30 Andreas Sturmlechner
2018-07-25 16:47 Mart Raudsepp
2018-03-06 21:37 Tobias Klausmann
2018-03-04 20:48 Sergei Trofimovich
2018-02-16 20:39 Sergei Trofimovich
2018-01-28 20:21 Michael Weber
2018-01-27  0:41 Thomas Deutschmann
2018-01-18  1:49 Mikle Kolyada
2018-01-13 12:13 Sergei Trofimovich
2017-10-12 11:15 Michael Palimaka
2016-10-08 16:09 Pacho Ramos
2015-12-17 15:42 William Hubbs
2015-11-11 17:27 Justin Lecher
2015-11-09 21:51 Pacho Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1664688786.46b12d8861e6beeeb827f2468fe061477820e732.williamh@gentoo \
    --to=williamh@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox