From f9460d11f42d88ae2e3f94b6a3fa77bf1ef07ec9 Mon Sep 17 00:00:00 2001 From: Alexander Miroshnichenko Date: Sun, 6 Mar 2022 12:38:50 +0300 Subject: [PATCH] add gui-apps/wtype-0.4 ebuild --- gui-apps/wtype/Manifest | 3 +++ gui-apps/wtype/metadata.xml | 11 +++++++++++ gui-apps/wtype/wtype-0.4.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 gui-apps/wtype/Manifest create mode 100644 gui-apps/wtype/metadata.xml create mode 100644 gui-apps/wtype/wtype-0.4.ebuild diff --git a/gui-apps/wtype/Manifest b/gui-apps/wtype/Manifest new file mode 100644 index 0000000..ae9a8aa --- /dev/null +++ b/gui-apps/wtype/Manifest @@ -0,0 +1,3 @@ +DIST wtype-0.4.tar.gz 8546 BLAKE2B 90973cf1373795004c7f5ec0f5d20b93896c2a9abab9037edc75b9d4af2a14d2acf8fa22df444ea8cbd6594af396522912dd87fa80dd96c04dbfb206ddec69d1 SHA512 d3441672418868221448675962979738016a9a5a96c61fd41a1e47d0633c8dea500a39c0834280788271abc6a59731692962b566ee9f6e592f00939088409130 +EBUILD wtype-0.4.ebuild 548 BLAKE2B 01c31d067054d703fcc9df6661264c226c16371c33db2df8a58fea42e54735a5557b7fa2d9aab2addb5ff622ed5be08358de1d1d900356e1c95e8c5a1da1f47a SHA512 2076a7d73f88c9d816f34093135aedd6542407690079ad76be95a23cef5efe880796361f554270afeab93d2797c3716b82585c40b77fd68452fabdc2cf2bb003 +MISC metadata.xml 336 BLAKE2B 185f0a2b77d43c370a1037fcd98e40bbab7329ceaaf1433c319aaaf8101d6879af49509225d933048faf080b6df3223d42340fb0e00bdf43279c62b0448330ab SHA512 e23c4f1034d8318a0746d4bb5df203b0e768597e909cb4336ef8205d700ba6206034f109c5cbb035af93fcfbc4eaacb2387d0182ff0ddbbea43e77004461a9e6 diff --git a/gui-apps/wtype/metadata.xml b/gui-apps/wtype/metadata.xml new file mode 100644 index 0000000..32dc3c8 --- /dev/null +++ b/gui-apps/wtype/metadata.xml @@ -0,0 +1,11 @@ + + + + + floss@bsd.ac + Aisha Tammy + + + Build plugins as dynamically loaded shared librarie + + diff --git a/gui-apps/wtype/wtype-0.4.ebuild b/gui-apps/wtype/wtype-0.4.ebuild new file mode 100644 index 0000000..cf06784 --- /dev/null +++ b/gui-apps/wtype/wtype-0.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 2021 Aisha Tammy +# Distributed under the terms of the ISC License + +EAPI=8 + +inherit meson + +DESCRIPTION="xdotool type for wayland" +HOMEPAGE="https://github.com/atx/wtype" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/atx/wtype" +else + SRC_URI="https://github.com/atx/wtype/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="modules" + +DEPEND=" + dev-libs/wayland + x11-libs/libxkbcommon +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-libs/wayland-protocols + virtual/pkgconfig +"