31 lines
644 B
Bash
31 lines
644 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=4
|
|
|
|
inherit qt4-r2 subversion
|
|
|
|
DESCRIPTION="Multitouch gesture recognizer configuration tool"
|
|
HOMEPAGE="https://code.google.com/p/touchegg"
|
|
#SRC_URI="http://touchegg.googlecode.com/files/${P}.tar.gz"
|
|
ESVN_REPO_URI="http://touchegg.googlecode.com/svn/touchegg-gui/"
|
|
ESVN_PROJECT="touchegg-gui"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
x11-misc/touchegg"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
eqmake4 "${S}"/touchegg-gui.pro
|
|
}
|
|
|
|
src_install() {
|
|
emake install DESTDIR="${D}" INSTALL_ROOT="${D}"
|
|
}
|