diff options
author | Matt Turner <mattst88@gentoo.org> | 2023-02-03 11:34:01 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-02-03 11:40:46 -0500 |
commit | d73c853f28c3147d904efda9c0e18247cef2ac6f (patch) | |
tree | 7586b9720e19c0a8ee319ab4a903fc27abf3963d /gui-libs | |
parent | app-portage/gpyutils: Add a RDEP on dev-python/packaging (diff) | |
download | gentoo-d73c853f28c3147d904efda9c0e18247cef2ac6f.tar.gz gentoo-d73c853f28c3147d904efda9c0e18247cef2ac6f.tar.bz2 gentoo-d73c853f28c3147d904efda9c0e18247cef2ac6f.zip |
gui-libs/libwpe: Version bump to 1.14.1
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gui-libs')
-rw-r--r-- | gui-libs/libwpe/Manifest | 1 | ||||
-rw-r--r-- | gui-libs/libwpe/libwpe-1.14.1.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/gui-libs/libwpe/Manifest b/gui-libs/libwpe/Manifest index 9fcff1155f15..847d0c3ba77c 100644 --- a/gui-libs/libwpe/Manifest +++ b/gui-libs/libwpe/Manifest @@ -1 +1,2 @@ DIST libwpe-1.14.0.tar.xz 62928 BLAKE2B 3d74d8282548048db0814b557c14ab170a3c7603014dc94e8a7f128f043f10fdfc3877c10bfffd655396f684b012dbb7e5a43ced6a164476f79ee3de7fcf92b8 SHA512 a443bc3777239140aff140a6b98595687aa50a3506e09d872cbabf843f5a6da575b90d0b3728062b7957b73c75778fc7d3a178d267b5ceca1da58e69f8ed9fed +DIST libwpe-1.14.1.tar.xz 62980 BLAKE2B 5f24322ff463fe9701e47c5eb46076fd406cbef2f54ca08b962c93f425a2ee217eed810ee7d2582ba6d54691071d651f8e60f624a88e99330027a8221e3f4d2c SHA512 302f5e795c1d3c927f583eea8f52a1e764ce4d610b8021dc6cd6fd672331bf5999388c0d3f4bda2fa2096385beda2fe399f18b6d8d31bddb18c5a4aae87b2e35 diff --git a/gui-libs/libwpe/libwpe-1.14.1.ebuild b/gui-libs/libwpe/libwpe-1.14.1.ebuild new file mode 100644 index 000000000000..d8dce1ac8315 --- /dev/null +++ b/gui-libs/libwpe/libwpe-1.14.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="Platform-agnostic interfaces for WPE WebKit" +HOMEPAGE="https://wpewebkit.org/" +SRC_URI="https://wpewebkit.org/releases/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="1.0" + +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + media-libs/mesa[egl(+)] + x11-libs/libxkbcommon +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + -Denable-xkb=true + -Dbuild-docs=false # hotdoc not packaged + ) + meson_src_configure +} |