blob: a489df0b299e2aa39b48e2bcb14a7371956d0158 (
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
33
34
35
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kcm_touchpad/kcm_touchpad-0.3.1-r1.ebuild,v 1.1 2013/02/26 13:03:36 kensington Exp $
EAPI=5
KDE_LINGUAS="de es nl pl"
inherit kde4-base
MY_P="mishaaq-${PN}-00370b5"
DESCRIPTION="KControl module for xf86-input-synaptics"
HOMEPAGE="http://www.kde-apps.org/content/show.php/kcm_touchpad?content=113335"
SRC_URI="http://github.com/mishaaq/kcm_touchpad/tarball/${P} -> ${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="
x11-libs/libXi
"
DEPEND="${RDEPEND}
>=x11-proto/inputproto-2.0
"
S=${WORKDIR}/${MY_P}
DOCS=( AUTHORS README )
src_prepare() {
sed -e "/^install( FILES AUTHORS/d" -i CMakeLists.txt || die
kde4-base_src_prepare
}
|