summaryrefslogtreecommitdiff
blob: 15f1fa43a879d4c211e5ece728a3f4398d720b55 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/brltty-3.4.1.ebuild,v 1.8 2004/06/24 21:17:18 agriffis Exp $

IUSE="gpm"

DESCRIPTION="BRLTTY is a background process (daemon) which provides access to the Linux/Unix console (when in text mode) for a blind person "
HOMEPAGE="http://mielke.cc/brltty"
SRC_URI="http://mielke.cc/brltty/releases/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha hppa ~mips amd64 ~ia64 ~ppc64"

DEPEND="virtual/glibc
	gpm? ( >=sys-libs/gpm-1.20 )"


src_unpack() {
	unpack ${A}
	cd ${S}
	sed -i "s:-O2 -g:${CFLAGS}:" Makefile
}

src_compile() {
	econf \
		`use_enable gpm` || die
	make || die
}

src_install() {
	make INSTALL_ROOT=${D} install || die
}