You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-accessibility/speechd-el/speechd-el-2.5.ebuild

43 lines
959 B

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit elisp
DESCRIPTION="Emacs speech support"
HOMEPAGE="http://www.freebsoft.org/speechd-el"
SRC_URI="http://www.freebsoft.org/pub/projects/speechd-el/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="brltty"
DEPEND=""
RDEPEND=">=app-accessibility/speech-dispatcher-0.7
brltty? ( app-accessibility/brltty )"
src_compile() {
emake
}
src_install() {
elisp-install ${PN} *.el *.elc
dobin speechd-log-extractor
dodoc ANNOUNCE NEWS README speechd-speak.pdf
doinfo speechd-el.info
}
pkg_postinst() {
elog "Execute the following commands from within emacs to get it to speak:"
elog " M-x load-library RET speechd-speak RET"
elog " M-x speechd-speak RET"
elog
elog "or add the following to your ~/.emacs file:"
elog
elog "(autoload 'speechd-speak \"speechd-speak\" nil t)"
elog '(speechd-speak)'
}