# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DESCRIPTION="Libinput synthetic gesture daemon" HOMEPAGE="https://git.sr.ht/~mil/lisgd" SRC_URI="https://git.sr.ht/~mil/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" IUSE="X wayland" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64" DEPEND=" dev-libs/libinput X? ( x11-libs/libX11 ) wayland? ( dev-libs/wayland ) " RDEPEND="$DEPEND" src_compile() { make $(usex X "" -DWITHOUT_X11) $(usex wayland "" -DWITHOUT_WAYLAND) }