blob: b643b1f83b11a49a3ad63523ccbff0e10bcf74a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/morseall/morseall-0.5.0.ebuild,v 1.1 2011/09/01 21:07:23 neurogeek Exp $
EAPI="3"
DESCRIPTION="Allows people who have limited mobility to control their computer using morse code"
HOMEPAGE="http://www.morseall.org/"
SRC_URI="http://pehr.net/software/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-amd64 ~x86"
IUSE=""
DEPEND="gnome-extra/at-spi:1"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc README ChangeLog NEWS TODO
}
|