blob: d998709fb13c2e511334a80230e293e4a4e4b25f (
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
34
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Chris Davies <c.davies@cdavies.org>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/xstroke-0.5.12.ebuild,v 1.2 2002/07/08 21:31:08 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Gesture/Handwriting recognition engine for X"
SRC_URI="ftp://ftp.handhelds.org/pub/projects/xstroke/release-0.5/${P}.tar.gz"
HOMEPAGE="http://www.east.isi.edu/projects/DSN/xstroke/"
LICENSE="GPL-2"
DEPEND=">=x11-base/xfree-4.1.0"
SLOT="0"
KEYWORDS="x86"
src_unpack() {
cd ${WORKDIR}
unpack ${P}.tar.gz
patch -p0 < ${FILESDIR}/${PN}-${PV}-gentoo.diff || die
}
src_compile() {
make DESTDIR=${D} || die
}
src_install() {
make DESTDIR=${D} BINDIR=/usr/bin install || die
}
|