blob: 14a6598412fe1b0aa4919652e503093453b26848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# 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-9999.ebuild,v 1.3 2009/12/03 20:43:20 williamh Exp $
EAPI="2"
EGIT_REPO_URI="http://linux-speakup.org/speakup.git"
inherit git linux-mod
DESCRIPTION="The speakup linux kernel based screen reader."
HOMEPAGE="http://linux-speakup.org"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="modules"
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_prepare() {
use modules && cmd=die || cmd=ewarn
case ${KV_EXTRA} in
*gentoo)
if kernel_is lt 2 6 25; then
$cmd "Speakup requires at least gentoo-sources-2.6.25"
fi
;;
*)
if kernel_is lt 2 6 26; then
$cmd "Speakup requires at least kernel version 2.6.26"
fi
;;
esac
}
src_compile() {
use modules && linux-mod_src_compile
}
src_install() {
use modules && linux-mod_src_install
dobin tools/speakupconf
dosbin tools/talkwith
dodoc Bugs.txt README To-Do doc/DefaultKeyAssignments doc/spkguide.txt
newdoc tools/README README.tools
}
pkg_postinst() {
use modules && 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
}
|