diff options
author | William Hubbs <williamh@gentoo.org> | 2009-04-05 20:34:38 +0000 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2009-04-05 20:34:38 +0000 |
commit | 282e9a230629dbe57f75db1a9e1d40f99ec5f6d1 (patch) | |
tree | 2ee549ddd212b2dc2bbfe98f32c029c5d63752d7 /app-accessibility | |
parent | x86 stable, bug #264982 (diff) | |
download | gentoo-2-282e9a230629dbe57f75db1a9e1d40f99ec5f6d1.tar.gz gentoo-2-282e9a230629dbe57f75db1a9e1d40f99ec5f6d1.tar.bz2 gentoo-2-282e9a230629dbe57f75db1a9e1d40f99ec5f6d1.zip |
New snapshot.
(Portage version: 2.2_rc28/cvs/Linux i686)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/speakup/ChangeLog | 8 | ||||
-rw-r--r-- | app-accessibility/speakup/speakup-3.0.3_p200904041142.ebuild | 70 |
2 files changed, 77 insertions, 1 deletions
diff --git a/app-accessibility/speakup/ChangeLog b/app-accessibility/speakup/ChangeLog index 2923e839038c..bf09cf69416e 100644 --- a/app-accessibility/speakup/ChangeLog +++ b/app-accessibility/speakup/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-accessibility/speakup # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speakup/ChangeLog,v 1.16 2009/04/01 16:52:31 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speakup/ChangeLog,v 1.17 2009/04/05 20:34:38 williamh Exp $ + +*speakup-3.0.3_p200904041142 (05 Apr 2009) + + 05 Apr 2009; William Hubbs <williamh@gentoo.org> + +speakup-3.0.3_p200904041142.ebuild: + New snapshot. 01 Apr 2009; William Hubbs <williamh@gentoo.org> speakup-3.0.3_p200902221539.ebuild: diff --git a/app-accessibility/speakup/speakup-3.0.3_p200904041142.ebuild b/app-accessibility/speakup/speakup-3.0.3_p200904041142.ebuild new file mode 100644 index 000000000000..2eaac051f467 --- /dev/null +++ b/app-accessibility/speakup/speakup-3.0.3_p200904041142.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/speakup/speakup-3.0.3_p200904041142.ebuild,v 1.1 2009/04/05 20:34:38 williamh Exp $ + +inherit linux-mod + +DESCRIPTION="The speakup linux kernel based screen reader." +HOMEPAGE="http://linux-speakup.org" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${PN}-3.0.3" + +pkg_setup() { + linux-mod_pkg_setup + case ${KV_EXTRA} in + *gentoo) + if [ kernel_is lt 2 6 25 ]; then + die "Speakup requires at least gentoo-sources-2.6.25" + fi + ;; + *) + if [ kernel_is lt 2 6 26 ]; then + die "Speakup requires at least kernel version2.6.26" + fi + ;; + esac + + MODULE_NAMES="speakup(${PN}:\"${S}\"/src) + speakup_acntpc(${PN}:\"${S}\"/src) + speakup_acntsa(${PN}:\"${S}\"/src) + speakup_apollo(${PN}:\"${S}\"/src) + speakup_audptr(${PN}:\"${S}\"/src) + speakup_bns(${PN}:\"${S}\"/src) + speakup_decext(${PN}:\"${S}\"/src) + speakup_decpc(${PN}:\"${S}\"/src) + speakup_dectlk(${PN}:\"${S}\"/src) + speakup_dtlk(${PN}:\"${S}\"/src) + speakup_dummy(${PN}:\"${S}\"/src) + speakup_keypc(${PN}:\"${S}\"/src) + speakup_ltlk(${PN}:\"${S}\"/src) + speakup_soft(${PN}:\"${S}\"/src) + speakup_spkout(${PN}:\"${S}\"/src) + speakup_txprt(${PN}:\"${S}\"/src)" + BUILD_PARAMS="KERNELDIR=${KERNEL_DIR}" + BUILD_TARGETS="clean all" +} + +src_install() { + linux-mod_src_install + dodoc Bugs.txt README To-Do doc/DefaultKeyAssignments doc/spkguide.txt + docinto contrib + dodoc contrib/* +} + +pkg_postinst() { + linux-mod_pkg_postinst + + elog "You must set up the speech synthesizer driver to be loaded" + elog "automatically in order for your system to start speaking" + elog "when it is booted." + if has_version "<sys-apps/baselayout-2"; then + elog "this is done via /etc/modules.autoload.d/kernel-2.6" + else + elog "This is done via /etc/conf.d/modules." + fi +} |