blob: 32988e5fbc1dd525c84d6cff960362bb81a3d214 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libstroke/libstroke-0.4.ebuild,v 1.19 2004/08/07 21:57:05 slarti Exp $
DESCRIPTION="A Stroke and Gesture recognition Library"
SRC_URI="http://www.etla.net/libstroke/${P}.tar.gz"
HOMEPAGE="http://www.etla.net/libstroke"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc alpha ppc"
IUSE=""
DEPEND=">=sys-libs/glibc-2.1.3
virtual/x11"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc COPYING COPYRIGHT CREDITS ChangeLog README
}
|