diff options
author | William Hubbs <williamh@gentoo.org> | 2009-05-19 18:40:42 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2009-05-19 18:40:42 +0000 |
commit | ae8f94e9ded769777431541da5a635866e6525ea (patch) | |
tree | a64a26b19bd4594c8be718bfc9067d19ef053c52 /app-accessibility/emacspeak | |
parent | Version bump (diff) | |
download | gentoo-2-ae8f94e9ded769777431541da5a635866e6525ea.tar.gz gentoo-2-ae8f94e9ded769777431541da5a635866e6525ea.tar.bz2 gentoo-2-ae8f94e9ded769777431541da5a635866e6525ea.zip |
Version bump.
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'app-accessibility/emacspeak')
-rw-r--r-- | app-accessibility/emacspeak/ChangeLog | 9 | ||||
-rw-r--r-- | app-accessibility/emacspeak/emacspeak-30.0.ebuild | 40 |
2 files changed, 47 insertions, 2 deletions
diff --git a/app-accessibility/emacspeak/ChangeLog b/app-accessibility/emacspeak/ChangeLog index 9e803c8f73ba..05dcfbfa1da4 100644 --- a/app-accessibility/emacspeak/ChangeLog +++ b/app-accessibility/emacspeak/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-accessibility/emacspeak -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/ChangeLog,v 1.33 2009/01/10 15:10:23 williamh Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/ChangeLog,v 1.34 2009/05/19 18:40:42 williamh Exp $ + +*emacspeak-30.0 (19 May 2009) + + 19 May 2009; William Hubbs <williamh@gentoo.org> +emacspeak-30.0.ebuild: + Version bump. 10 Jan 2009; William Hubbs <williamh@gentoo.org> -emacspeak-24.ebuild: Removed old version. diff --git a/app-accessibility/emacspeak/emacspeak-30.0.ebuild b/app-accessibility/emacspeak/emacspeak-30.0.ebuild new file mode 100644 index 000000000000..9265686a366a --- /dev/null +++ b/app-accessibility/emacspeak/emacspeak-30.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-30.0.ebuild,v 1.1 2009/05/19 18:40:42 williamh Exp $ + +EAPI="2" + +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_prepare() { + EPATCH_SUFFIX="patch" \ + epatch +} + +src_configure() { + make config || die +} + +src_compile() { + 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 + sed -i -e "s:/.*image/::" "${D}"/usr/bin/emacspeak +} |