diff options
author | 2022-08-24 10:06:47 -0400 | |
---|---|---|
committer | 2022-08-24 10:08:25 -0400 | |
commit | 8c82714f7c5a4803039aa05717d10143c125aaa5 (patch) | |
tree | 3ff085cb9cb0b9065782112754b0058a041a1c92 /x11-apps/xisxwayland/xisxwayland-2.ebuild | |
parent | x11-apps/xisxwayland: Bump to EAPI=8 (diff) | |
download | gentoo-8c82714f7c5a4803039aa05717d10143c125aaa5.tar.gz gentoo-8c82714f7c5a4803039aa05717d10143c125aaa5.tar.bz2 gentoo-8c82714f7c5a4803039aa05717d10143c125aaa5.zip |
x11-apps/xisxwayland: Version bump to 2
Closes: https://bugs.gentoo.org/864136
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-apps/xisxwayland/xisxwayland-2.ebuild')
-rw-r--r-- | x11-apps/xisxwayland/xisxwayland-2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11-apps/xisxwayland/xisxwayland-2.ebuild b/x11-apps/xisxwayland/xisxwayland-2.ebuild new file mode 100644 index 000000000000..aaa53f42f155 --- /dev/null +++ b/x11-apps/xisxwayland/xisxwayland-2.ebuild @@ -0,0 +1,29 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +if [[ ${PV} = 9999* ]]; then + GIT_ECLASS="git-r3" + EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/app/${PN}.git" +fi + +inherit ${GIT_ECLASS} meson + +DESCRIPTION="Tool to determine whether the X server in use is Xwayland" +HOMEPAGE="https://gitlab.freedesktop.org/xorg/app/xisxwayland" +if [[ ${PV} = 9999* ]]; then + SRC_URI="" +else + KEYWORDS="~amd64" + SRC_URI="https://xorg.freedesktop.org/archive/individual/app/${P}.tar.xz" +fi + +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXrandr" +DEPEND="${RDEPEND} + x11-base/xorg-proto" |