diff options
author | Matt Turner <mattst88@gentoo.org> | 2018-05-20 19:15:04 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2018-05-20 19:15:07 -0700 |
commit | ebacfac367fa872515eae4c4296104e83d00fbcd (patch) | |
tree | 40e61a7fd28e22ee258cdd9deb467b97a9dd4428 /dev-libs/libinput/libinput-1.10.7.ebuild | |
parent | media-libs/mesa: Drop old versions (diff) | |
download | gentoo-ebacfac367fa872515eae4c4296104e83d00fbcd.tar.gz gentoo-ebacfac367fa872515eae4c4296104e83d00fbcd.tar.bz2 gentoo-ebacfac367fa872515eae4c4296104e83d00fbcd.zip |
dev-libs/libinput: Version bump 1.10.7
Straight to stable.
Diffstat (limited to 'dev-libs/libinput/libinput-1.10.7.ebuild')
-rw-r--r-- | dev-libs/libinput/libinput-1.10.7.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/dev-libs/libinput/libinput-1.10.7.ebuild b/dev-libs/libinput/libinput-1.10.7.ebuild new file mode 100644 index 000000000000..9e10a1005467 --- /dev/null +++ b/dev-libs/libinput/libinput-1.10.7.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit meson udev + +DESCRIPTION="Library to handle input devices in Wayland" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/libinput/" +SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0/10" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86" +IUSE="doc input_devices_wacom test" +# Tests require write access to udev rules directory which is a no-no for live system. +# Other tests are just about logs, exported symbols and autotest of the test library. +RESTRICT="test" + +RDEPEND=" + input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) + >=dev-libs/libevdev-1.3 + >=sys-libs/mtdev-1.1 + virtual/libudev +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( + >=app-doc/doxygen-1.8.3 + >=media-gfx/graphviz-2.38.0 + ) +" +# test? ( +# >=dev-libs/check-0.9.10 +# dev-util/valgrind +# sys-libs/libunwind ) + +src_configure() { + # gui can be built but will not be installed + local emesonargs=( + -Ddebug-gui=false + -Ddocumentation="$(usex doc true false)" + -Dlibwacom="$(usex input_devices_wacom true false)" + -Dtests="$(usex test true false)" + -Dudev-dir="$(get_udevdir)" + ) + meson_src_configure +} + +src_install() { + meson_src_install + if use doc ; then + docinto html + dodoc -r "${BUILD_DIR}"/html/. + fi + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die +} |