summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2008-12-13 22:51:15 +0000
committerWilliam Hubbs <williamh@gentoo.org>2008-12-13 22:51:15 +0000
commit1250714b8190f03d62392d69938da16c100e0f9a (patch)
treea6f473629655e42f0ab5109d695ef1ee5ebe84df /app-accessibility/emacspeak
parentStable on sparc, bug #249165 (diff)
downloadgentoo-2-1250714b8190f03d62392d69938da16c100e0f9a.tar.gz
gentoo-2-1250714b8190f03d62392d69938da16c100e0f9a.tar.bz2
gentoo-2-1250714b8190f03d62392d69938da16c100e0f9a.zip
Version bump for 238575.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-gentoo-r5 i686)
Diffstat (limited to 'app-accessibility/emacspeak')
-rw-r--r--app-accessibility/emacspeak/ChangeLog7
-rw-r--r--app-accessibility/emacspeak/emacspeak-29.0.ebuild36
2 files changed, 42 insertions, 1 deletions
diff --git a/app-accessibility/emacspeak/ChangeLog b/app-accessibility/emacspeak/ChangeLog
index a74bbb101d5d..33bb33e4fa6c 100644
--- a/app-accessibility/emacspeak/ChangeLog
+++ b/app-accessibility/emacspeak/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-accessibility/emacspeak
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/ChangeLog,v 1.28 2008/05/30 04:48:36 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/ChangeLog,v 1.29 2008/12/13 22:51:15 williamh Exp $
+
+*emacspeak-29.0 (13 Dec 2008)
+
+ 13 Dec 2008; William Hubbs <williamh@gentoo.org> +emacspeak-29.0.ebuild:
+ Version bump for #238575.
30 May 2008; William Hubbs <williamh@gentoo.org>
files/emacspeak-28.0-espeak.patch, files/emacspeak-28.0-makefile.patch,
diff --git a/app-accessibility/emacspeak/emacspeak-29.0.ebuild b/app-accessibility/emacspeak/emacspeak-29.0.ebuild
new file mode 100644
index 000000000000..cd7142fe8764
--- /dev/null
+++ b/app-accessibility/emacspeak/emacspeak-29.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-29.0.ebuild,v 1.1 2008/12/13 22:51:15 williamh Exp $
+
+inherit eutils
+
+DESCRIPTION="the emacspeak audio desktop"
+HOMEPAGE="http://emacspeak.sourceforge.net/"
+SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2
+ mirror://gentoo/${P}-patches.tar.bz2"
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~ppc ~x86"
+IUSE=""
+
+DEPEND=">=virtual/emacs-22"
+RDEPEND="${DEPEND}
+ >=dev-tcltk/tclx-8.4"
+
+src_unpack() {
+ unpack ${A}
+ EPATCH_SUFFIX="patch" \
+ epatch
+}
+
+src_compile() {
+ make config || die
+ make emacspeak || die
+}
+
+src_install() {
+ make prefix="${D}"/usr install || die
+ dodoc README etc/NEWS* etc/FAQ etc/COPYRIGHT
+ dohtml -r install-guide user-guide
+ dosed "s:/.*image/::" /usr/bin/emacspeak
+}