diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2016-05-13 19:47:23 +0200 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2016-05-13 19:47:23 +0200 |
commit | 33f49af573127885b5d8ba6ae91c6e97b29fef35 (patch) | |
tree | c55bb62c14f4768b73772317ae1b5dec31d711c0 /dev-libs/libinput/libinput-1.3.0.ebuild | |
parent | sys-devel/automake: rework --docdir flag for automatic prefix support #582734 (diff) | |
download | gentoo-33f49af573127885b5d8ba6ae91c6e97b29fef35.tar.gz gentoo-33f49af573127885b5d8ba6ae91c6e97b29fef35.tar.bz2 gentoo-33f49af573127885b5d8ba6ae91c6e97b29fef35.zip |
dev-libs/libinput: Version bump
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-libs/libinput/libinput-1.3.0.ebuild')
-rw-r--r-- | dev-libs/libinput/libinput-1.3.0.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/dev-libs/libinput/libinput-1.3.0.ebuild b/dev-libs/libinput/libinput-1.3.0.ebuild new file mode 100644 index 000000000000..8ec94bd29692 --- /dev/null +++ b/dev-libs/libinput/libinput-1.3.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils 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="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.12 ) + >=dev-libs/libevdev-0.4 + >=sys-libs/mtdev-1.1 + virtual/libudev +" +DEPEND="${RDEPEND} + virtual/pkgconfig" +# test? ( +# >=dev-libs/check-0.9.10 +# dev-util/valgrind +# sys-libs/libunwind ) + +src_prepare() { + # Doc handling in kinda strange but everything + # is available in the tarball already. + sed -e 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' \ + -i Makefile.am Makefile.in || die +} + +src_configure() { + # gui can be built but will not be installed + # building documentation silently fails with graphviz syntax errors + econf \ + --disable-documentation \ + --disable-event-gui \ + $(use_enable input_devices_wacom libwacom) \ + $(use_enable test tests) \ + --with-udev-dir="$(get_udevdir)" +} + +src_install() { + emake install DESTDIR="${D}" + dodoc -r doc/html + prune_libtool_files +} |