diff options
author | 2003-03-11 08:06:57 +0000 | |
---|---|---|
committer | 2003-03-11 08:06:57 +0000 | |
commit | 5824e76ff5e2709dbb05a2120b99e65f1c0766a9 (patch) | |
tree | 1d023d89b48e2ef9323388b884c9ebfb21493014 /x11-misc/xstroke/xstroke-0.5.12-r1.ebuild | |
parent | repoman fix (diff) | |
download | gentoo-2-5824e76ff5e2709dbb05a2120b99e65f1c0766a9.tar.gz gentoo-2-5824e76ff5e2709dbb05a2120b99e65f1c0766a9.tar.bz2 gentoo-2-5824e76ff5e2709dbb05a2120b99e65f1c0766a9.zip |
many many fixes
Diffstat (limited to 'x11-misc/xstroke/xstroke-0.5.12-r1.ebuild')
-rw-r--r-- | x11-misc/xstroke/xstroke-0.5.12-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild b/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild new file mode 100644 index 000000000000..4a644cc5b824 --- /dev/null +++ b/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xstroke/xstroke-0.5.12-r1.ebuild,v 1.1 2003/03/11 08:06:57 seemant Exp $ + +inherit eutils + +IUSE="" + +S=${WORKDIR}/${P} +DESCRIPTION="Gesture/Handwriting recognition engine for X" +HOMEPAGE="http://dsn.east.isi.edu/xstroke/" +SRC_URI="ftp://ftp.handhelds.org/pub/projects/${PN}/release-0.5/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~ppc sparc ~alpha ~mips ~hppa" + +DEPEND=">=x11-base/xfree-4.1.0" + +src_unpack() { + unpack ${A} + # generate Makefile from Imakefile + cd ${S}; xmkmf -a +} + +src_compile() { + # otherwise it'll include the wrong freetype headers. + make \ + INCLUDES="-I/usr/include/freetype2" \ + DEFINES="-DXK_XKB_KEYS" \ + || die +} + +src_install() { + make DESTDIR=${D} BINDIR=/usr/bin install || die + newman xstroke.man xstroke.1 + dodoc AUTHORS COPYING ChangeLog README TODO + dohtml -r doc +} |