blob: 1d2f9d15911bde04e8cbdfb7be3e50e5c445b6fc (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-25.ebuild,v 1.2 2007/12/26 22:16:46 phreak Exp $
DESCRIPTION="the emacspeak audio desktop"
HOMEPAGE="http://emacspeak.sourceforge.net/"
SRC_URI="http://${PN}.sourceforge.net/${P}.tar.bz2"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
RDEPEND="virtual/emacs
>=dev-tcltk/tclx-8.4"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S=${WORKDIR}
src_compile() {
make config SRC=`pwd` || die
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
dosed "s:/.*image/::" /usr/bin/emacspeak
}
|