public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-accessibility/espeak: espeak-1.46.01.ebuild ChangeLog
@ 2011-12-18 17:45 William Hubbs (williamh)
  0 siblings, 0 replies; 3+ messages in thread
From: William Hubbs (williamh) @ 2011-12-18 17:45 UTC (permalink / raw
  To: gentoo-commits

williamh    11/12/18 17:45:53

  Modified:             ChangeLog
  Added:                espeak-1.46.01.ebuild
  Log:
  version bump and add runtime dependency on media-sound/sox for #391679.
  
  (Portage version: 2.2.0_alpha81/cvs/Linux i686)

Revision  Changes    Path
1.101                app-accessibility/espeak/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	4 Dec 2011 16:06:46 -0000	1.100
+++ ChangeLog	18 Dec 2011 17:45:53 -0000	1.101
@@ -1,6 +1,11 @@
 # ChangeLog for app-accessibility/espeak
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.100 2011/12/04 16:06:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.101 2011/12/18 17:45:53 williamh Exp $
+
+*espeak-1.46.01 (18 Dec 2011)
+
+  18 Dec 2011; William Hubbs <williamh@gentoo.org> +espeak-1.46.01.ebuild:
+  version bump and add runtime dependency on media-sound/sox for #391679.
 
   04 Dec 2011; Raúl Porcel <armin76@gentoo.org> espeak-1.45.04.ebuild:
   alpha/ia64/sparc stable wrt #391417



1.1                  app-accessibility/espeak/espeak-1.46.01.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?rev=1.1&content-type=text/plain

Index: espeak-1.46.01.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild,v 1.1 2011/12/18 17:45:53 williamh Exp $

EAPI="4"

inherit eutils toolchain-funcs

MY_P="${P}-source"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
DESCRIPTION="Speech synthesizer for English and other languages"
HOMEPAGE="http://espeak.sourceforge.net/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="portaudio pulseaudio"
REQUIRED_USE="portaudio? ( !pulseaudio )
	pulseaudio? ( !portaudio )"
RDEPEND="media-sound/sox
	pulseaudio? ( media-sound/pulseaudio )
	portaudio? ( >=media-libs/portaudio-19_pre20071207 )"
DEPEND="${RDEPEND}
	app-arch/unzip"

S=${WORKDIR}/${MY_P}

get_audio() {
	if use portaudio; then
		echo portaudio
	elif use pulseaudio; then
		echo pulseaudio
	else
		echo none
	fi
}

src_prepare() {
	cd src
	# gentoo uses portaudio 19.
	mv -f portaudio19.h portaudio.h
}

src_compile() {
	cd src
	emake PREFIX="${EPREFIX}/usr" AUDIO="$(get_audio)" \
	CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" all

	einfo "Fixing byte order of phoneme data files"
	cd "${S}/platforms/big_endian"
	make
	./espeak-phoneme-data "${S}/espeak-data"
	cp -f phondata phonindex phontab "${S}/espeak-data"
}

src_install() {
	cd src
	make DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="\$(PREFIX)/$(get_libdir)" AUDIO="$(get_audio)" install

	cd ..
	insinto /usr/share/espeak-data
	doins -r dictsource
	dodoc ChangeLog.txt ReadMe
	dohtml -r docs/*
}

pkg_postinst() {
	if ! use portaudio && ! use pulseaudio; then
		ewarn "Since portaudio and pulseaudio are not in your use flags,"
		ewarn "espeak will only be able to create wav files."
		ewarn "If this is not what you want, please reemerge ${CATEGORY}/${PN}"
		ewarn "with either portaudio or pulseaudio USE flag enabled."
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in app-accessibility/espeak: espeak-1.46.01.ebuild ChangeLog
@ 2012-01-01 15:33 Raul Porcel (armin76)
  0 siblings, 0 replies; 3+ messages in thread
From: Raul Porcel (armin76) @ 2012-01-01 15:33 UTC (permalink / raw
  To: gentoo-commits

armin76     12/01/01 15:33:41

  Modified:             espeak-1.46.01.ebuild ChangeLog
  Log:
  Add ~ia64
  
  (Portage version: 2.1.10.43/cvs/Linux ia64)

Revision  Changes    Path
1.2                  app-accessibility/espeak/espeak-1.46.01.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?r1=1.1&r2=1.2

Index: espeak-1.46.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- espeak-1.46.01.ebuild	18 Dec 2011 17:45:53 -0000	1.1
+++ espeak-1.46.01.ebuild	1 Jan 2012 15:33:41 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild,v 1.1 2011/12/18 17:45:53 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild,v 1.2 2012/01/01 15:33:41 armin76 Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 HOMEPAGE="http://espeak.sourceforge.net/"
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="portaudio pulseaudio"
 REQUIRED_USE="portaudio? ( !pulseaudio )
 	pulseaudio? ( !portaudio )"



1.102                app-accessibility/espeak/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	18 Dec 2011 17:45:53 -0000	1.101
+++ ChangeLog	1 Jan 2012 15:33:41 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for app-accessibility/espeak
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.101 2011/12/18 17:45:53 williamh Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.102 2012/01/01 15:33:41 armin76 Exp $
+
+  01 Jan 2012; Raúl Porcel <armin76@gentoo.org> espeak-1.46.01.ebuild:
+  Add ~ia64
 
 *espeak-1.46.01 (18 Dec 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in app-accessibility/espeak: espeak-1.46.01.ebuild ChangeLog
@ 2013-02-02 22:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-02 22:17 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/02 22:17:43

  Modified:             espeak-1.46.01.ebuild ChangeLog
  Log:
  Add ~arm, wrt bug #449220
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.4                  app-accessibility/espeak/espeak-1.46.01.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild?r1=1.3&r2=1.4

Index: espeak-1.46.01.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- espeak-1.46.01.ebuild	31 May 2012 02:10:21 -0000	1.3
+++ espeak-1.46.01.ebuild	2 Feb 2013 22:17:43 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild,v 1.3 2012/05/31 02:10:21 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/espeak-1.46.01.ebuild,v 1.4 2013/02/02 22:17:43 ago Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 HOMEPAGE="http://espeak.sourceforge.net/"
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="portaudio pulseaudio"
 REQUIRED_USE="portaudio? ( !pulseaudio )
 	pulseaudio? ( !portaudio )"



1.106                app-accessibility/espeak/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/espeak/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	31 May 2012 02:10:21 -0000	1.105
+++ ChangeLog	2 Feb 2013 22:17:43 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for app-accessibility/espeak
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.105 2012/05/31 02:10:21 zmedico Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeak/ChangeLog,v 1.106 2013/02/02 22:17:43 ago Exp $
+
+  02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> espeak-1.46.01.ebuild:
+  Add ~arm, wrt bug #449220
 
   31 May 2012; Zac Medico <zmedico@gentoo.org> espeak-1.42.04.ebuild,
   espeak-1.45.03.ebuild, espeak-1.45.04.ebuild, espeak-1.46.01.ebuild:
@@ -424,4 +427,3 @@
   +espeak-1.16.ebuild:
   Initial commit.
   Thanks to breb@sent.com for the ebuild which I based this on, in bug 151004.
-





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

end of thread, other threads:[~2013-02-02 22:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-02 22:17 [gentoo-commits] gentoo-x86 commit in app-accessibility/espeak: espeak-1.46.01.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-01 15:33 Raul Porcel (armin76)
2011-12-18 17:45 William Hubbs (williamh)

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