diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2016-04-24 23:04:09 +0200 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2016-04-24 23:06:06 +0200 |
commit | 1db0237eeef3f51ded7202a7750da0c2fea48ec8 (patch) | |
tree | 4294aa87bbbf3c5a905178138bd036536405775a /x11-drivers/xf86-input-libinput | |
parent | dev-python/pyqwt: fix typo in variable name (diff) | |
download | gentoo-1db0237eeef3f51ded7202a7750da0c2fea48ec8.tar.gz gentoo-1db0237eeef3f51ded7202a7750da0c2fea48ec8.tar.bz2 gentoo-1db0237eeef3f51ded7202a7750da0c2fea48ec8.zip |
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
Diffstat (limited to 'x11-drivers/xf86-input-libinput')
-rw-r--r-- | x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
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 f87e480f668b..2d48e343fe75 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 +} |