Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tpconfig/
Date: Thu, 02 Feb 2017 23:25:21
Message-Id: 1486077913.c4ad931603db84b8bcafc69b1194c9acefb5e088.monsieurp@gentoo
1 commit: c4ad931603db84b8bcafc69b1194c9acefb5e088
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 2 23:24:57 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 2 23:25:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4ad9316
7
8 app-misc/tpconfig: EAPI 6 bump.
9
10 Package-Manager: portage-2.3.3
11
12 app-misc/tpconfig/tpconfig-3.1.3-r2.ebuild | 26 ++++++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/app-misc/tpconfig/tpconfig-3.1.3-r2.ebuild b/app-misc/tpconfig/tpconfig-3.1.3-r2.ebuild
16 new file mode 100644
17 index 00000000..8a15af1
18 --- /dev/null
19 +++ b/app-misc/tpconfig/tpconfig-3.1.3-r2.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +inherit toolchain-funcs
26 +
27 +DESCRIPTION="Touchpad config for ALPS and Synaptics TPs. Controls tap/click behaviour"
28 +HOMEPAGE="http://www.compass.com/synaptics/"
29 +SRC_URI="http://www.compass.com/${PN}/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~x86"
34 +
35 +DOCS=( README AUTHORS NEWS INSTALL )
36 +
37 +src_compile() {
38 + econf
39 + emake CC="$(tc-getCC)"
40 +}
41 +
42 +src_install() {
43 + dobin "${PN}"
44 + doinitd "${FILESDIR}"/"${PN}"
45 + newconfd "${FILESDIR}"/"${PN}.conf" "${PN}"
46 +}