blob: f8bec994e1a4e01538b35e7fdccf78c0fad2d82f (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-text/dasher/dasher-3.0.0.ebuild,v 1.3 2003/07/11 20:35:22 aliz Exp $
DESCRIPTION="information-efficient text-entry interface, \
driven by natural continuous pointing gestures"
HOMEPAGE="http://www.inference.phy.cam.ac.uk/dasher/"
SRC_URI="http://www.inference.phy.cam.ac.uk/dasher/download/linux/source/3.0/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
DEPEND="=x11-libs/gtkmm-1.2*"
KEYWORDS="x86 ~ppc ~sparc ~alpha"
src_unpack() {
unpack ${A}
}
src_compile() {
econf || die "bad ./configure"
make || die "compile problem"
}
src_install() {
make install DESTDIR=${D} || die
}
|