diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2024-01-26 21:42:55 -0300 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2024-02-17 23:51:49 +0200 |
commit | 98cc311d24a3ebdd67fc8633209f43f724f832b6 (patch) | |
tree | 405c925a37e4dcf373e9614f302e37f41b1ba952 /gui-libs/libwpe | |
parent | app-editors/vim: drop 9.0.1403 (diff) | |
download | gentoo-98cc311d24a3ebdd67fc8633209f43f724f832b6.tar.gz gentoo-98cc311d24a3ebdd67fc8633209f43f724f832b6.tar.bz2 gentoo-98cc311d24a3ebdd67fc8633209f43f724f832b6.zip |
gui-libs/libwpe: Version bump to 1.14.2
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35033
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'gui-libs/libwpe')
-rw-r--r-- | gui-libs/libwpe/Manifest | 1 | ||||
-rw-r--r-- | gui-libs/libwpe/libwpe-1.14.2.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/gui-libs/libwpe/Manifest b/gui-libs/libwpe/Manifest index 3cf05fc96924..0502bdf79e7c 100644 --- a/gui-libs/libwpe/Manifest +++ b/gui-libs/libwpe/Manifest @@ -1 +1,2 @@ DIST libwpe-1.14.1.tar.xz 62980 BLAKE2B 5f24322ff463fe9701e47c5eb46076fd406cbef2f54ca08b962c93f425a2ee217eed810ee7d2582ba6d54691071d651f8e60f624a88e99330027a8221e3f4d2c SHA512 302f5e795c1d3c927f583eea8f52a1e764ce4d610b8021dc6cd6fd672331bf5999388c0d3f4bda2fa2096385beda2fe399f18b6d8d31bddb18c5a4aae87b2e35 +DIST libwpe-1.14.2.tar.xz 63076 BLAKE2B cc866198c92c949cddde668ffba8f322ccaf55551fd3aa33ec06c36609355c6f7cbf2e7fb91cb40e6c4add2bd45a024663d787beeb5287031c8fba3e84a55db3 SHA512 2c7b14190a55adcb9f45281715c5238e746ca85b8e50c655974b3a5e359472162bd87a5a40d13b73811e76d34d705614968bb6bdf8bf01c90504ce11e4b30e56 diff --git a/gui-libs/libwpe/libwpe-1.14.2.ebuild b/gui-libs/libwpe/libwpe-1.14.2.ebuild new file mode 100644 index 000000000000..034047a9d0a7 --- /dev/null +++ b/gui-libs/libwpe/libwpe-1.14.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2024 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 +} |