blob: c14504b7883bb2481ea862ae962cb4709739ebd8 (
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
|
# 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.5 2009/11/01 18:46:55 eva 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
}
|