diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-02-08 18:59:07 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-02-08 18:59:07 +0000 |
commit | ed4f62f8aa28a66477438dc622ba47836261d114 (patch) | |
tree | 1e253b20ecf52310b843ef1d01badffb0e8dadd8 /x11-misc/wayv/wayv-0.3-r2.ebuild | |
parent | Version bump, drop old. (diff) | |
download | gentoo-2-ed4f62f8aa28a66477438dc622ba47836261d114.tar.gz gentoo-2-ed4f62f8aa28a66477438dc622ba47836261d114.tar.bz2 gentoo-2-ed4f62f8aa28a66477438dc622ba47836261d114.zip |
Respect CC, CFLAGS (bug #241546).
(Portage version: 2.2_rc62/cvs/Linux i686)
Diffstat (limited to 'x11-misc/wayv/wayv-0.3-r2.ebuild')
-rw-r--r-- | x11-misc/wayv/wayv-0.3-r2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-misc/wayv/wayv-0.3-r2.ebuild b/x11-misc/wayv/wayv-0.3-r2.ebuild new file mode 100644 index 000000000000..992e392e193c --- /dev/null +++ b/x11-misc/wayv/wayv-0.3-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wayv/wayv-0.3-r2.ebuild,v 1.1 2010/02/08 18:59:07 jer Exp $ + +EAPI="2" + +inherit toolchain-funcs + +DESCRIPTION="Wayv is hand-writing/gesturing recognition software for X" +HOMEPAGE="http://www.stressbunny.com/wayv" +SRC_URI="http://www.stressbunny.com/gimme/wayv/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="" + +RDEPEND="x11-libs/libX11 + x11-libs/libXtst" +DEPEND="${RDEPEND} + x11-proto/inputproto + x11-proto/xproto" + +src_prepare() { + sed -i src/Makefile* \ + -e 's| = -Wall -O2| += |g' || die "sed failed" +} + +src_configure() { + tc-export CC + econf || die "econf failed" +} + +src_install() { + einstall || die + cd doc + einstall || die + dodoc HOWTO* +} |