blob: 6247e890c8d89f4af55dc8f9fdc9ec45d67e1e15 (
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: /var/cvsroot/gentoo-x86/kde-misc/synaptiks/synaptiks-0.4.0-r1.ebuild,v 1.3 2011/01/29 17:26:48 scarabeus Exp $
EAPI=3
KDE_LINGUAS="cs da de es ga lt nds pt pt_BR ru sv uk"
inherit kde4-base
DESCRIPTION="Simple touchpad management service for KDE"
HOMEPAGE="http://synaptiks.lunaryorn.de/"
SRC_URI="http://bitbucket.org/lunar/${PN}/downloads/${P}.tar.bz2"
LICENSE="BSD-2"
SLOT="4"
KEYWORDS="amd64 x86"
IUSE="debug +handbook"
DEPEND=">=x11-libs/libXi-1.3"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}"-kcmdesktop.patch )
src_configure() {
local mycmakeargs+=( -DHAVE_XINPUT2=ON )
kde4-base_src_configure
}
|