blob: 89258585cf4dcaad5402aa26eb3de283e051259d (
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
28
29
30
31
32
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
KDE_LINGUAS="de es nl pl"
KDE_LINGUAS_LIVE_OVERRIDE="true"
inherit kde4-base
DESCRIPTION="KControl module for xf86-input-synaptics"
HOMEPAGE="http://kde-apps.org/content/show.php/kcm_touchpad?content=113335"
EGIT_REPO_URI="git://github.com/mishaaq/kcm_touchpad.git"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS=""
IUSE="debug"
RDEPEND="
x11-libs/libXi
"
DEPEND="${RDEPEND}
>=x11-proto/inputproto-2.0
"
DOCS=( AUTHORS README )
src_prepare() {
sed -e "/^install( FILES AUTHORS/d" -i CMakeLists.txt || die
kde4-base_src_prepare
}
|