From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 36BEA138206 for ; Sun, 24 Apr 2016 21:06:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FF46E0845; Sun, 24 Apr 2016 21:06:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E61FAE0845 for ; Sun, 24 Apr 2016 21:06:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2E35340940 for ; Sun, 24 Apr 2016 21:06:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B7587D for ; Sun, 24 Apr 2016 21:06:34 +0000 (UTC) From: "Chí-Thanh Christopher Nguyễn" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Chí-Thanh Christopher Nguyễn" Message-ID: <1461531966.1db0237eeef3f51ded7202a7750da0c2fea48ec8.chithanh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-libinput/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild X-VCS-Directories: x11-drivers/xf86-input-libinput/ X-VCS-Committer: chithanh X-VCS-Committer-Name: Chí-Thanh Christopher Nguyễn X-VCS-Revision: 1db0237eeef3f51ded7202a7750da0c2fea48ec8 X-VCS-Branch: master Date: Sun, 24 Apr 2016 21:06:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 39121674-6766-4b41-b5c7-e8d9ba790f86 X-Archives-Hash: efad182d35177aaeceff241ac9ee0e3d commit: 1db0237eeef3f51ded7202a7750da0c2fea48ec8 Author: Chí-Thanh Christopher Nguyễn gentoo org> AuthorDate: Sun Apr 24 21:04:09 2016 +0000 Commit: Chí-Thanh Christopher Nguyễn gentoo org> CommitDate: Sun Apr 24 21:06:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1db0237e x11-drivers/xf86-input-libinput: check for CONFIG_TIMERFD Bug: https://bugs.gentoo.org/show_bug.cgi?id=565552 Package-Manager: portage-2.2.26 x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild index f87e480..2d48e34 100644 --- a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild +++ b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit xorg-2 +inherit linux-info xorg-2 DESCRIPTION="X.org input driver based on libinput" @@ -15,3 +15,8 @@ RDEPEND=">=dev-libs/libinput-1.2.0:0=" DEPEND="${RDEPEND}" DOCS=( "README.md" "conf/90-libinput.conf" ) + +pkg_pretend() { + CONFIG_CHECK="~TIMERFD" + check_extra_config +}