commit: 1dfb04ad1201e686e357fea8dd43ed2bf8680544 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Mar 8 15:45:13 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Mar 8 15:45:13 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dfb04ad
x11-terms/xfce4-terminal: Bump to 1.2.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> x11-terms/xfce4-terminal/Manifest | 1 + .../xfce4-terminal/xfce4-terminal-1.2.0.ebuild | 58 ++++++++++++++++++++++ 2 files changed, 59 insertions(+) diff --git a/x11-terms/xfce4-terminal/Manifest b/x11-terms/xfce4-terminal/Manifest index ee9956cfd448..413289356825 100644 --- a/x11-terms/xfce4-terminal/Manifest +++ b/x11-terms/xfce4-terminal/Manifest @@ -1 +1,2 @@ DIST xfce4-terminal-1.1.5.tar.xz 440192 BLAKE2B d17a90a89e883d274e63ccba8332fc5b4caf4a9fab50eed26afc1401795df305ba4190cfb8e653b7a2730226dd3f6a870e32581a0c5ba2d660cbe79000ba9a54 SHA512 075ce32f60198ab6f99ac08f9b00328c70cc3b35a082dcdbf245028a31f471fb5758c2d5569f6ccdce9593c70040f8a88d87ea53b86e021e603a85413b6f89c5 +DIST xfce4-terminal-1.2.0.tar.xz 451388 BLAKE2B 9768b44ef9667b78162f6221ddbdc0526f6d02b5bc7ef406b0228640fd93f5ccac44c541fe1cc01c19bd0bced5104b20a1e073fc0771d881f4eca9140e9dde6b SHA512 b0ac9330d7df046955bad43a535a1eb58bb7461d97d7145924df6e179c2b276817ecd607b72fae881d5e724a3ee5b29f2bd309ebadda5b88cc0afab52b33da13 diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-1.2.0.ebuild b/x11-terms/xfce4-terminal/xfce4-terminal-1.2.0.ebuild new file mode 100644 index 000000000000..1a497db15bd9 --- /dev/null +++ b/x11-terms/xfce4-terminal/xfce4-terminal-1.2.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg-utils + +DESCRIPTION="A terminal emulator for the Xfce desktop environment" +HOMEPAGE=" + https://docs.xfce.org/apps/terminal/start + https://gitlab.xfce.org/apps/xfce4-terminal/ +" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/$(ver_cut 1-2)/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-solaris" +IUSE="utempter wayland X" +REQUIRED_USE="|| ( wayland X )" + +RDEPEND=" + >=dev-libs/glib-2.44.0:2 + >=dev-libs/libpcre2-10.00:= + >=x11-libs/gtk+-3.22.0:3[wayland?,X?] + >=x11-libs/vte-0.51.3:2.91 + >=xfce-base/libxfce4ui-4.17.5:= + >=xfce-base/libxfce4util-4.16.0:= + >=xfce-base/xfconf-4.16.0:= + utempter? ( sys-libs/libutempter:= ) + wayland? ( >=gui-libs/gtk-layer-shell-0.7.0 ) + X? ( >=x11-libs/libX11-1.6.7 ) +" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + dev-libs/libxml2 + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + $(meson_feature X x11) + $(meson_feature wayland) + $(meson_feature wayland gtk-layer-shell) + $(meson_feature utempter libutempter) + ) + meson_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +}
