summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Brannon <cbrannon@gentoo.org>2011-03-24 21:34:31 +0000
committerChristopher Brannon <cbrannon@gentoo.org>2011-03-24 21:34:31 +0000
commitd0364d8e5718c5414163e0609b27cb4085315600 (patch)
treea09c39bdc3fc26828183fcc07127f488cfd874f2 /app-accessibility
parentStable on amd64 wrt bug #359303 (diff)
downloadgentoo-2-d0364d8e5718c5414163e0609b27cb4085315600.tar.gz
gentoo-2-d0364d8e5718c5414163e0609b27cb4085315600.tar.bz2
gentoo-2-d0364d8e5718c5414163e0609b27cb4085315600.zip
Version bump, and misc fixes.
Add FDL-1.2 to LICENSE, add missing RDEPENDs, stop trying to install missing docs (fixes bug #316847), and migrate to EAPI="4". (Portage version: 2.1.9.44/cvs/Linux i686)
Diffstat (limited to 'app-accessibility')
-rw-r--r--app-accessibility/festival-freebsoft-utils/ChangeLog14
-rw-r--r--app-accessibility/festival-freebsoft-utils/festival-freebsoft-utils-0.10.ebuild32
2 files changed, 44 insertions, 2 deletions
diff --git a/app-accessibility/festival-freebsoft-utils/ChangeLog b/app-accessibility/festival-freebsoft-utils/ChangeLog
index b30466c3632a..f7abdaccd435 100644
--- a/app-accessibility/festival-freebsoft-utils/ChangeLog
+++ b/app-accessibility/festival-freebsoft-utils/ChangeLog
@@ -1,6 +1,16 @@
# ChangeLog for app-accessibility/festival-freebsoft-utils
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/festival-freebsoft-utils/ChangeLog,v 1.19 2009/11/01 20:58:15 eva Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/festival-freebsoft-utils/ChangeLog,v 1.20 2011/03/24 21:34:31 cbrannon Exp $
+
+*festival-freebsoft-utils-0.10 (24 Mar 2011)
+
+ 24 Mar 2011; Christopher Brannon <cbrannon@gentoo.org>
+ +festival-freebsoft-utils-0.10.ebuild:
+ * Version bump.
+ * Migrate to EAPI="4".
+ * Stop trying to install non-existent doc files (fixes bug #316847).
+ * Add missing RDEPENDs: media-sound/sox and virtual/libiconv.
+ * Add FDL-1.2 to LICENSE, since the documentation is covered under it.
17 Oct 2009; Mark Loeser <halcy0n@gentoo.org>
festival-freebsoft-utils-0.2.ebuild, festival-freebsoft-utils-0.4.ebuild,
diff --git a/app-accessibility/festival-freebsoft-utils/festival-freebsoft-utils-0.10.ebuild b/app-accessibility/festival-freebsoft-utils/festival-freebsoft-utils-0.10.ebuild
new file mode 100644
index 000000000000..90e51b32c546
--- /dev/null
+++ b/app-accessibility/festival-freebsoft-utils/festival-freebsoft-utils-0.10.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/festival-freebsoft-utils/festival-freebsoft-utils-0.10.ebuild,v 1.1 2011/03/24 21:34:31 cbrannon Exp $
+
+EAPI="4"
+
+DESCRIPTION="a collection of Festival functions for speech-dispatcher"
+HOMEPAGE="http://www.freebsoft.org/festival-freebsoft-utils"
+SRC_URI="http://www.freebsoft.org/pub/projects/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2 FDL-1.2"
+SLOT="0"
+KEYWORDS="~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=">=app-accessibility/festival-1.4.3
+ media-sound/sox
+ virtual/libiconv"
+# We depend on virtual/libiconv for the iconv command-line tool. This
+# command should be available in both packages providing the virtual.
+
+src_compile(){
+ einfo "Nothing to compile."
+}
+
+src_install() {
+ dodoc ANNOUNCE NEWS README
+ doinfo doc/*.info
+ insinto /usr/share/festival
+ doins "${S}"/*.scm
+}