blob: 55cc5599d2760d15547dce49f0e722c3fd61453c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/synaptiks/synaptiks-0.3.2-r1.ebuild,v 1.1 2010/02/27 13:06:25 ssuominen Exp $
EAPI=2
KDE_LINGUAS="da de en_GB ru tr"
inherit kde4-base
DESCRIPTION="A 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
!${CATEGORY}/${PN}:0"
DOCS="CHANGES README"
src_configure() {
if has_version ">=x11-libs/libXi-1.3"; then
mycmakeargs+=( -DHAVE_XINPUT2=ON )
fi
kde4-base_src_configure
}
|