public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/flite/, app-accessibility/flite/files/
@ 2018-03-26 20:19 Aaron Bauman
  0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-03-26 20:19 UTC (permalink / raw
  To: gentoo-commits

commit:     4ca5affe87d9c4fca33efefc00f14bedfe3e29b1
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Thu Mar 22 13:14:10 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 20:19:45 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ca5affe

app-accessibility/flite: EAPI bump and patch updates

Bump EAPI to 6 and cleanup the patches a bit

Package-Manager: Portage-2.3.24, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/7588

 .../flite/files/flite-1.4-audio-interface.patch    |  4 ++--
 .../flite/files/flite-1.4-ldflags.patch            |  9 ++++-----
 app-accessibility/flite/flite-1.4-r4.ebuild        | 23 +++++++++++++---------
 3 files changed, 20 insertions(+), 16 deletions(-)

diff --git a/app-accessibility/flite/files/flite-1.4-audio-interface.patch b/app-accessibility/flite/files/flite-1.4-audio-interface.patch
index bc8d25b89bc..d50428edd5a 100644
--- a/app-accessibility/flite/files/flite-1.4-audio-interface.patch
+++ b/app-accessibility/flite/files/flite-1.4-audio-interface.patch
@@ -1,5 +1,5 @@
---- configure.in	2009-08-15 06:46:38.000000000 +1000
-+++ configure.in	2011-08-30 00:53:26.000000000 +1000
+--- a/configure.in
++++ b/configure.in
 @@ -304,7 +304,6 @@
  	[  --with-audio          with specific audio support (none linux freebsd etc) ],
          AUDIODRIVER=$with_audio )

diff --git a/app-accessibility/flite/files/flite-1.4-ldflags.patch b/app-accessibility/flite/files/flite-1.4-ldflags.patch
index f9295fb853b..fd8f49059e7 100644
--- a/app-accessibility/flite/files/flite-1.4-ldflags.patch
+++ b/app-accessibility/flite/files/flite-1.4-ldflags.patch
@@ -1,6 +1,5 @@
-diff -Naur flite-1.4-release/config/common_make_rules flite-1.4-release.new/config/common_make_rules
---- flite-1.4-release/config/common_make_rules	2009-07-30 14:52:56.000000000 +0000
-+++ flite-1.4-release.new/config/common_make_rules	2011-03-26 20:22:59.000000000 +0000
+--- a/config/common_make_rules
++++ b/config/common_make_rules
 @@ -68,7 +68,7 @@
  
  FLITELIBS = $(BUILDDIR)/lib/libflite.a
@@ -19,8 +18,8 @@ diff -Naur flite-1.4-release/config/common_make_rules flite-1.4-release.new/conf
  	@ (cd $(LIBDIR) && ln -s `basename $@.${PROJECT_VERSION}` `basename $@.${PROJECT_SHLIB_VERSION}` )
  	@ (cd $(LIBDIR) && ln -s `basename $@.${PROJECT_SHLIB_VERSION}` `basename $@` )
  	@ rm -rf shared_os
---- flite-1.4-release/tools/Makefile~	2009-08-22 20:19:01.000000000 +0100
-+++ flite-1.4-release.new/tools/Makefile	2013-01-20 20:06:34.259527220 +0000
+--- a/tools/Makefile
++++ b/tools/Makefile
 @@ -62,9 +62,9 @@
  LOCAL_CLEAN = $(BINDIR)/find_sts $(BINDIR)/flite_sort
  

diff --git a/app-accessibility/flite/flite-1.4-r4.ebuild b/app-accessibility/flite/flite-1.4-r4.ebuild
index 536b8f83eea..54ce1000b6a 100644
--- a/app-accessibility/flite/flite-1.4-r4.ebuild
+++ b/app-accessibility/flite/flite-1.4-r4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit autotools eutils multilib-minimal
+EAPI=6
+inherit autotools multilib-minimal
 
 DESCRIPTION="Flite text to speech engine"
 HOMEPAGE="http://www.speech.cs.cmu.edu/flite/index.html"
@@ -18,6 +18,14 @@ RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/${P}-release
 
+PATCHES=(
+	"${FILESDIR}"/${PN}-1.4-tempfile.patch
+	"${FILESDIR}"/${PN}-1.4-fix-parallel-builds.patch
+	"${FILESDIR}"/${PN}-1.4-respect-destdir.patch
+	"${FILESDIR}"/${PN}-1.4-ldflags.patch
+	"${FILESDIR}"/${PN}-1.4-audio-interface.patch
+)
+
 get_audio() {
 	if use alsa; then
 		echo alsa
@@ -29,11 +37,8 @@ get_audio() {
 }
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-tempfile.patch
-	epatch "${FILESDIR}"/${P}-fix-parallel-builds.patch
-	epatch "${FILESDIR}"/${P}-respect-destdir.patch
-	epatch "${FILESDIR}"/${P}-ldflags.patch
-	epatch "${FILESDIR}"/${P}-audio-interface.patch
+	default
+
 	sed -i main/Makefile \
 		-e '/-rpath/s|$(LIBDIR)|$(INSTALLLIBDIR)|g' \
 		|| die
@@ -61,7 +66,7 @@ multilib_src_install_all() {
 	dodoc ACKNOWLEDGEMENTS README
 
 	if ! use static-libs; then
-		rm -rf "${D}"/usr/lib*/*.a
+		find "${ED}" -name '*.a' ! -name '*.dll.a' -delete || die
 	fi
 }
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/flite/, app-accessibility/flite/files/
@ 2024-03-04  7:40 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-03-04  7:40 UTC (permalink / raw
  To: gentoo-commits

commit:     67e62445b8a9e6428f4c6abc67617e013887f078
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  4 07:33:19 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar  4 07:33:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e62445

app-accessibility/flite: fix build w/ make-4.4

Keeping -j1 as the upstream PR notes it's not complete.

Closes: https://bugs.gentoo.org/879069
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../flite/files/flite-2.2-make-4.4.patch           | 60 ++++++++++++++++++++++
 app-accessibility/flite/flite-2.2-r1.ebuild        | 12 ++++-
 2 files changed, 70 insertions(+), 2 deletions(-)

diff --git a/app-accessibility/flite/files/flite-2.2-make-4.4.patch b/app-accessibility/flite/files/flite-2.2-make-4.4.patch
new file mode 100644
index 000000000000..21c2f866f5fc
--- /dev/null
+++ b/app-accessibility/flite/files/flite-2.2-make-4.4.patch
@@ -0,0 +1,60 @@
+https://github.com/festvox/flite/issues/86
+https://github.com/festvox/flite/pull/92
+
+From 14aa28529357ba13994a2bd90cfd11bfceeffcce Mon Sep 17 00:00:00 2001
+From: Moritz Barsnick <barsnick@gmx.net>
+Date: Thu, 23 Mar 2023 14:53:08 +0100
+Subject: [PATCH] fix implicit dependency on flite_voice_list.c
+
+Also make flite_lang_list a proper rule, so that it only builds once.
+
+Both C files were repeatedly being clobbered, as were their respective
+object files.
+
+Convert flite_voice_list.c is into an explicit dependency with a creation
+rule. flite_voice_list.o continues to be implicit from flite_voice_list.c.
+
+Convert flite_lang_list into a similar, proper object rule.
+
+Fixes https://github.com/festvox/flite/issues/86
+--- a/main/Makefile
++++ b/main/Makefile
+@@ -106,21 +106,16 @@ endif
+ 
+ .NOTPARALLEL: $(ALL)
+ 
+-flite_lang_list: 
+-	rm -f flite_lang_list.c
++flite_lang_list.c:
+ 	$(TOP)/tools/make_lang_list $(LANGS) $(LEXES)
+-	$(MAKE) flite_lang_list.o
+ 
+-$(BINDIR)/flite$(EXEEXT): flite_main.o flite_lang_list $(flite_LIBS_deps)
++flite_voice_list.c:
+ 	$(TOP)/tools/make_voice_list $(VOICES)
+-	rm -f flite_voice_list.o
+-	$(MAKE) flite_voice_list.o
++
++$(BINDIR)/flite$(EXEEXT): flite_main.o flite_voice_list.o flite_lang_list.o $(flite_LIBS_deps)
+ 	$(CC) $(CFLAGS) -o $@ flite_main.o flite_voice_list.o flite_lang_list.o $(flite_LIBS_flags) $(LDFLAGS)
+ 
+-$(BINDIR)/flitevox_info$(EXEEXT): flitevox_info_main.o flite_lang_list $(flite_LIBS_deps)
+-	$(TOP)/tools/make_voice_list $(VOICES)
+-	rm -f flite_voice_list.o
+-	$(MAKE) flite_voice_list.o
++$(BINDIR)/flitevox_info$(EXEEXT): flitevox_info_main.o flite_voice_list.o flite_lang_list.o $(flite_LIBS_deps)
+ 	$(CC) $(CFLAGS) -o $@ flitevox_info_main.o flite_voice_list.o flite_lang_list.o $(flite_LIBS_flags) $(LDFLAGS)
+ 
+ $(BINDIR)/world$(EXEEXT): world_main.c
+@@ -144,10 +139,7 @@ each:
+ 	   $(MAKE) VOICE=$$i $(BINDIR)/flite_$$i ; \
+ 	done
+ 
+-$(BINDIR)/flite_${VOICE}: flite_main.o flite_lang_list $(flite_LIBS_deps)
+-	$(TOP)/tools/make_voice_list $(VOICE)
+-	rm -f flite_voice_list.o
+-	$(MAKE) flite_voice_list.o
++$(BINDIR)/flite_${VOICE}: flite_main.o flite_voice_list.o flite_lang_list.o $(flite_LIBS_deps)
+ 	$(CC) $(CFLAGS) -o $@ flite_main.o flite_voice_list.o flite_lang_list.o $(flite_LIBS_flags) $(LDFLAGS)
+ 
+ install:

diff --git a/app-accessibility/flite/flite-2.2-r1.ebuild b/app-accessibility/flite/flite-2.2-r1.ebuild
index 5c91935f7dc3..835c173da379 100644
--- a/app-accessibility/flite/flite-2.2-r1.ebuild
+++ b/app-accessibility/flite/flite-2.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit autotools multilib-minimal toolchain-funcs
+inherit autotools flag-o-matic multilib-minimal toolchain-funcs
 
 DESCRIPTION="Flite text to speech engine"
 HOMEPAGE="http://www.festvox.org/flite/ https://github.com/festvox/flite"
@@ -58,6 +58,7 @@ RDEPEND="${DEPEND}"
 PATCHES=(
 	"${FILESDIR}"/${PN}-1.4-audio-interface.patch
 	"${FILESDIR}"/${PN}-2.2-backport-pr30.patch
+	"${FILESDIR}"/${PN}-2.2-make-4.4.patch
 )
 
 get_audio() {
@@ -105,6 +106,13 @@ src_prepare() {
 	multilib_copy_sources
 }
 
+src_configure() {
+	# lto-type-mismatch
+	filter-lto
+
+	multilib-minimal_src_configure
+}
+
 multilib_src_configure() {
 	local myconf=(
 		--enable-shared


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-accessibility/flite/, app-accessibility/flite/files/
@ 2024-05-04 18:08 Sam James
  0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-05-04 18:08 UTC (permalink / raw
  To: gentoo-commits

commit:     8fa024e917f0029d4b5653476053a8c679d79901
Author:     Kostadin Shishmanov <kocelfc <AT> tutanota <DOT> com>
AuthorDate: Fri May  3 18:13:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May  4 18:07:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fa024e9

app-accessibility/flite: backport patch to fix lto

Backport upstream patch that fixes lto-type-mismatch

https://github.com/festvox/flite/pull/66

Signed-off-by: Kostadin Shishmanov <kocelfc <AT> tutanota.com>
Closes: https://github.com/gentoo/gentoo/pull/36541
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../flite/files/flite-2.2-backport-pr66.patch      |  55 ++++++++
 app-accessibility/flite/flite-2.2-r2.ebuild        | 138 +++++++++++++++++++++
 2 files changed, 193 insertions(+)

diff --git a/app-accessibility/flite/files/flite-2.2-backport-pr66.patch b/app-accessibility/flite/files/flite-2.2-backport-pr66.patch
new file mode 100644
index 000000000000..f7f41ecb499d
--- /dev/null
+++ b/app-accessibility/flite/files/flite-2.2-backport-pr66.patch
@@ -0,0 +1,55 @@
+https://github.com/festvox/flite/pull/66/commits/cad672713f3fc9702babf4e3a2cc685586aeb87e
+
+From cad672713f3fc9702babf4e3a2cc685586aeb87e Mon Sep 17 00:00:00 2001
+From: Dominik 'Rathann' Mierzejewski <dominik@greysector.net>
+Date: Wed, 6 Oct 2021 12:42:31 +0200
+Subject: [PATCH] make shared arrays size declarations consistent
+
+Fixes:
+../../lang/cmulex/cmu_lex.c:49:27: warning: type of 'cmu_lex_phone_table' does not match original declaration [-Wlto-type-mismatch]
+   49 | extern const char * const cmu_lex_phone_table[54];
+      |                           ^
+../../lang/cmulex/cmu_lex_entries.c:14:20: note: array types have different bounds
+   14 | const char * const cmu_lex_phone_table[57] =
+      |                    ^
+../../lang/cmulex/cmu_lex_entries.c:14:20: note: 'cmu_lex_phone_table' was previously declared here
+
+and
+../../lang/cmu_grapheme_lex/cmu_grapheme_lex.h:47:27: warning: type of 'unicode_sampa_mapping' does not match original declaration [-Wlto-type-mismatch]
+   47 | extern const char * const unicode_sampa_mapping[16663][5];
+      |                           ^
+../../lang/cmu_grapheme_lex/grapheme_unitran_tables.c:9:20: note: array types have different bounds
+    9 | const char * const unicode_sampa_mapping[16798][5] =
+      |                    ^
+../../lang/cmu_grapheme_lex/grapheme_unitran_tables.c:9:20: note: 'unicode_sampa_mapping' was previously declared here
+---
+ lang/cmu_grapheme_lex/cmu_grapheme_lex.h | 2 +-
+ lang/cmulex/cmu_lex.c                    | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/lang/cmu_grapheme_lex/cmu_grapheme_lex.h b/lang/cmu_grapheme_lex/cmu_grapheme_lex.h
+index 320d263..25386e7 100644
+--- a/lang/cmu_grapheme_lex/cmu_grapheme_lex.h
++++ b/lang/cmu_grapheme_lex/cmu_grapheme_lex.h
+@@ -44,7 +44,7 @@ extern "C" {
+ cst_lexicon *cmu_grapheme_lex_init(void);
+ 
+ extern const int num_unicode_sampa_mapping;
+-extern const char * const unicode_sampa_mapping[16663][5];
++extern const char * const unicode_sampa_mapping[16798][5];
+ 
+ #ifdef __cplusplus
+ } /* extern "C" */
+diff --git a/lang/cmulex/cmu_lex.c b/lang/cmulex/cmu_lex.c
+index 7dfdfc1..e3f44cd 100644
+--- a/lang/cmulex/cmu_lex.c
++++ b/lang/cmulex/cmu_lex.c
+@@ -46,7 +46,7 @@ extern const int cmu_lex_entry[];
+ extern const unsigned char cmu_lex_data[];
+ extern const int cmu_lex_num_entries;
+ extern const int cmu_lex_num_bytes;
+-extern const char * const cmu_lex_phone_table[54];
++extern const char * const cmu_lex_phone_table[57];
+ extern const char * const cmu_lex_phones_huff_table[];
+ extern const char * const cmu_lex_entries_huff_table[];
+ 

diff --git a/app-accessibility/flite/flite-2.2-r2.ebuild b/app-accessibility/flite/flite-2.2-r2.ebuild
new file mode 100644
index 000000000000..5e967534e978
--- /dev/null
+++ b/app-accessibility/flite/flite-2.2-r2.ebuild
@@ -0,0 +1,138 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools multilib-minimal toolchain-funcs
+
+DESCRIPTION="Flite text to speech engine"
+HOMEPAGE="http://www.festvox.org/flite/ https://github.com/festvox/flite"
+SRC_URI="https://github.com/festvox/flite/archive/v${PV}.tar.gz -> ${P}.tar.gz
+	voices? (
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_ben_rm.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_guj_ad.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_guj_dp.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_guj_kt.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_hin_ab.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_kan_plv.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_mar_aup.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_mar_slp.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_pan_amp.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_tam_sdr.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_tel_kpn.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_tel_sk.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_indic_tel_ss.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_aew.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_ahw.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_aup.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_awb.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_axb.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_bdl.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_clb.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_eey.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_fem.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_gka.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_jmk.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_ksp.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_ljm.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_lnh.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_rms.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_rxr.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_slp.flitevox
+		http://www.festvox.org/${PN}/packed/${P}/voices/cmu_us_slt.flitevox
+	)"
+
+LICENSE="BSD freetts public-domain regexp-UofT BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="alsa oss pulseaudio test voices"
+REQUIRED_USE="test? ( alsa )"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	pulseaudio? ( media-libs/libpulse[${MULTILIB_USEDEP}] )
+	!pulseaudio? ( alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-1.4-audio-interface.patch
+	"${FILESDIR}"/${PN}-2.2-backport-pr30.patch
+	"${FILESDIR}"/${PN}-2.2-make-4.4.patch
+	"${FILESDIR}"/${PN}-2.2-backport-pr66.patch
+)
+
+get_audio() {
+	if use pulseaudio; then
+		echo pulseaudio
+	elif use alsa; then
+		echo alsa
+	elif use oss; then
+		echo oss
+	else
+		echo none
+	fi
+}
+
+pkg_pretend() {
+	[[ ${MERGE_TYPE} != binary ]] && use test && tc-check-openmp
+}
+
+pkg_setup() {
+	[[ ${MERGE_TYPE} != binary ]] && use test && tc-check-openmp
+}
+
+src_unpack() {
+	for file in ${A}; do
+		case "${file}" in
+			*.flitevox)
+				cp -av "${DISTDIR}/${file}" "${WORKDIR}/" || die "Unable to copy ${file}"
+				;;
+			*)
+				unpack "${file}"
+				;;
+		esac
+	done
+}
+
+src_prepare() {
+	default
+	sed -i main/Makefile \
+		-e '/-rpath/s|$(LIBDIR)|$(INSTALLLIBDIR)|g' \
+		|| die
+	mv configure.{in,ac} || die
+	eautoreconf
+
+	# custom makefiles
+	multilib_copy_sources
+}
+
+multilib_src_configure() {
+	local myconf=(
+		--enable-shared
+		--with-audio=$(get_audio)
+	)
+	econf "${myconf[@]}"
+}
+
+multilib_src_compile() {
+	emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
+}
+
+multilib_src_install_all() {
+	dodoc ACKNOWLEDGEMENTS README.md
+
+	rm -rf "${D}"/usr/lib*/*.a
+
+	if use voices; then
+		insinto /usr/share/flite
+		doins "${WORKDIR}"/*.flitevox
+	fi
+}
+
+pkg_postinst() {
+	if [[ "$(get_audio)" = "none" ]]; then
+		ewarn "flite is built without audio support. Enable the"
+		ewarn "alsa, oss, or pulseaudio USE flags for audio support."
+	fi
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-05-04 18:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-26 20:19 [gentoo-commits] repo/gentoo:master commit in: app-accessibility/flite/, app-accessibility/flite/files/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2024-03-04  7:40 Sam James
2024-05-04 18:08 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox