diff options
author | William Hubbs <williamh@gentoo.org> | 2013-10-10 22:39:12 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2013-10-10 22:39:12 +0000 |
commit | 51230e28efc6716fc68b4e6f6690300ba533988d (patch) | |
tree | 7a14b728c86c147165f481c76a3ecf1a195bf073 /app-accessibility | |
parent | Initial import, ebuild by E.G. Galano (bug #487554). (diff) | |
download | gentoo-2-51230e28efc6716fc68b4e6f6690300ba533988d.tar.gz gentoo-2-51230e28efc6716fc68b4e6f6690300ba533988d.tar.bz2 gentoo-2-51230e28efc6716fc68b4e6f6690300ba533988d.zip |
Bump to eapi 5 to allow use dependencies can be added for espeak.
This is important enough that I am making this change directly to a
stable ebuild as well. Otherwise, it is possible to have espeakup be
unable to speak which breaks accessibility.
(Portage version: 2.2.1/cvs/Linux i686, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/espeakup/ChangeLog | 12 | ||||
-rw-r--r-- | app-accessibility/espeakup/espeakup-0.71.ebuild | 13 | ||||
-rw-r--r-- | app-accessibility/espeakup/espeakup-9999.ebuild | 13 |
3 files changed, 27 insertions, 11 deletions
diff --git a/app-accessibility/espeakup/ChangeLog b/app-accessibility/espeakup/ChangeLog index e90558f99a74..410a5a703001 100644 --- a/app-accessibility/espeakup/ChangeLog +++ b/app-accessibility/espeakup/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-accessibility/espeakup -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeakup/ChangeLog,v 1.22 2011/06/25 13:54:08 williamh Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeakup/ChangeLog,v 1.23 2013/10/10 22:39:12 williamh Exp $ + + 10 Oct 2013; William Hubbs <williamh@gentoo.org> espeakup-0.71.ebuild, + espeakup-9999.ebuild: + Bump to eapi 5 to allow use dependencies can be added for espeak. This is + important enough that I am making this change directly to a stable ebuild as + well. Otherwise, it is possible to have espeakup be unable to speak which + breaks accessibility. 25 Jun 2011; William Hubbs <williamh@gentoo.org> espeakup-9999.ebuild: migrate to git-2 eclass. @@ -83,4 +90,3 @@ 02 Sep 2008; William Hubbs <williamh@gentoo.org> +files/espeakup.rc, +metadata.xml, +espeakup-0.2.ebuild: Initial commit. - diff --git a/app-accessibility/espeakup/espeakup-0.71.ebuild b/app-accessibility/espeakup/espeakup-0.71.ebuild index 113599b54183..559fec17b07f 100644 --- a/app-accessibility/espeakup/espeakup-0.71.ebuild +++ b/app-accessibility/espeakup/espeakup-0.71.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2011 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/espeakup/espeakup-0.71.ebuild,v 1.9 2011/05/16 23:25:49 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeakup/espeakup-0.71.ebuild,v 1.10 2013/10/10 22:39:11 williamh Exp $ + +EAPI=5 inherit linux-info @@ -13,8 +15,11 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="" -DEPEND="app-accessibility/espeak" -RDEPEND="${DEPEND}" +COMMON_DEPEND="|| ( + app-accessibility/espeak[portaudio] + app-accessibility/espeak[pulseaudio] )" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" CONFIG_CHECK="~SPEAKUP ~SPEAKUP_SYNTH_SOFT" ERROR_SPEAKUP="CONFIG_SPEAKUP is not enabled in this kernel!" diff --git a/app-accessibility/espeakup/espeakup-9999.ebuild b/app-accessibility/espeakup/espeakup-9999.ebuild index 89b0c4a2e4b1..0f533d50518a 100644 --- a/app-accessibility/espeakup/espeakup-9999.ebuild +++ b/app-accessibility/espeakup/espeakup-9999.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2011 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/espeakup/espeakup-9999.ebuild,v 1.9 2011/06/25 13:54:08 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/espeakup/espeakup-9999.ebuild,v 1.10 2013/10/10 22:39:11 williamh Exp $ + +EAPI=5 if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="git://github.com/williamh/espeakup.git" @@ -19,8 +21,11 @@ LICENSE="GPL-3" SLOT="0" IUSE="" -DEPEND="app-accessibility/espeak" -RDEPEND="${DEPEND}" +COMMON_DEPEND="|| ( + app-accessibility/espeak[portaudio] + app-accessibility/espeak[pulseaudio] )" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" CONFIG_CHECK="~SPEAKUP ~SPEAKUP_SYNTH_SOFT" ERROR_SPEAKUP="CONFIG_SPEAKUP is not enabled in this kernel!" |