diff options
author | 2021-09-07 15:32:31 +0200 | |
---|---|---|
committer | 2021-09-07 16:08:36 +0200 | |
commit | bd9b8593b59f3b7a85a1f6bf62fcc95e8a27f359 (patch) | |
tree | 18c0720280e69e4c76e4dca85859537385d4366e /dev-libs/libwacom/libwacom-1.12.ebuild | |
parent | profiles: Mask net-libs/gsnmp for removal (diff) | |
download | gentoo-bd9b8593b59f3b7a85a1f6bf62fcc95e8a27f359.tar.gz gentoo-bd9b8593b59f3b7a85a1f6bf62fcc95e8a27f359.tar.bz2 gentoo-bd9b8593b59f3b7a85a1f6bf62fcc95e8a27f359.zip |
dev-libs/libwacom: Bump to 1.12
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-libs/libwacom/libwacom-1.12.ebuild')
-rw-r--r-- | dev-libs/libwacom/libwacom-1.12.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/dev-libs/libwacom/libwacom-1.12.ebuild b/dev-libs/libwacom/libwacom-1.12.ebuild new file mode 100644 index 000000000000..de40b8c9ca0d --- /dev/null +++ b/dev-libs/libwacom/libwacom-1.12.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit meson python-any-r1 toolchain-funcs udev + +DESCRIPTION="Library for identifying Wacom tablets and their model-specific features" +HOMEPAGE="https://github.com/linuxwacom/libwacom" +SRC_URI="https://github.com/linuxwacom/${PN}/releases/download/${P}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/glib:2 + dev-libs/libgudev:= +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) + test? ( + ${PYTHON_DEPS} + $(python_gen_any_dep ' + dev-python/python-libevdev[${PYTHON_USEDEP}] + dev-python/pyudev[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + ') + ) +" + +python_check_deps() { + has_version -b "dev-python/python-libevdev[${PYTHON_USEDEP}]" && + has_version -b "dev-python/pyudev[${PYTHON_USEDEP}]" && + has_version -b "dev-python/pytest[${PYTHON_USEDEP}]" +} + +pkg_setup() { + tc-ld-disable-gold # bug https://github.com/linuxwacom/libwacom/issues/170 + + if use test; then + python-any-r1_pkg_setup + fi +} + +src_configure() { + local emesonargs=( + $(meson_feature doc documentation) + $(meson_feature test tests) + -Dudev-dir=$(get_udevdir) + ) + meson_src_configure +} |