blob: 44a73cae85dc303b05093d6be54802c1ad148c8c (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Gesture Injector: No-GEIS, No-Toolkits"
SRC_URI="http://launchpad.net/ginn/0.x/${PV}/+download/ginn-${PV}.tar.gz"
HOMEPAGE="http://launchpad.net/canonical-multitouch/ginn"
KEYWORDS="~x86 ~amd64"
SLOT="0"
LICENSE="LGPL-3"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
x11-libs/utouch-geis
x11-libs/bamf
"
src_compile() {
econf
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
}
|