blob: cf1e2a47699844e35ad7f79b271401af25afc6dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/xstroke-0.6.ebuild,v 1.3 2005/11/11 19:50:11 fmccor Exp $
DESCRIPTION="Gesture/Handwriting recognition engine for X"
HOMEPAGE="http://www.xstroke.org/"
SRC_URI="http://www.xstroke.org/releases/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~hppa ~mips ~ppc sparc x86"
IUSE=""
DEPEND="virtual/x11"
src_install() {
make DESTDIR="${D}" BINDIR=/usr/bin install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
|