diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-10-14 15:04:43 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-10-14 15:05:12 +0200 |
commit | 0ca8d86aa02490bdb0813c5a521b7fa46d03d431 (patch) | |
tree | e2b53532d310e617f99ac5455daca5d0f8d52bee /x11-terms | |
parent | package.mask: last rite acct-{user,group}/{tpm,ultimaker} acct-group/systemd-... (diff) | |
download | gentoo-0ca8d86aa02490bdb0813c5a521b7fa46d03d431.tar.gz gentoo-0ca8d86aa02490bdb0813c5a521b7fa46d03d431.tar.bz2 gentoo-0ca8d86aa02490bdb0813c5a521b7fa46d03d431.zip |
x11-terms/xfce4-terminal: Bump to 1.1.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'x11-terms')
-rw-r--r-- | x11-terms/xfce4-terminal/Manifest | 1 | ||||
-rw-r--r-- | x11-terms/xfce4-terminal/xfce4-terminal-1.1.1.ebuild | 58 |
2 files changed, 59 insertions, 0 deletions
diff --git a/x11-terms/xfce4-terminal/Manifest b/x11-terms/xfce4-terminal/Manifest index 6b1b975272e1..f1cc0b551bec 100644 --- a/x11-terms/xfce4-terminal/Manifest +++ b/x11-terms/xfce4-terminal/Manifest @@ -1 +1,2 @@ DIST xfce4-terminal-1.1.0.tar.bz2 1021840 BLAKE2B 981d73362dd7e1122b893c0761ca8f758e9382bc49a5ad985d11a953aa17e65b0c372b8a6350ed2671665508e625fbfbf4532dadc88211c14b6848c195d247dc SHA512 c01f0e7a293c4e55b4ee151eb8beb5ff9634a8134b545452c87ee9fa9928507e73bda1a63634900f669a58353877c2cb3f48e7b95cf236bdc857ca311c73c86f +DIST xfce4-terminal-1.1.1.tar.bz2 1033180 BLAKE2B e33bf7f0ff56200154a7195b6aaf09a7b67c7577c78190fd110b1dc035914295735925bf82f0cd3b6809646315236a32fc835acbb8d97b73b57025205faef9e8 SHA512 0f2631cc9790b467495cf17a506c33b9c6a037b94a353cb870554b1dd9da0b4795ed965ca2e9beb5dec1b344304e4dc9f71130862f6b45d63f66c603757991cd diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-1.1.1.ebuild b/x11-terms/xfce4-terminal/xfce4-terminal-1.1.1.ebuild new file mode 100644 index 000000000000..1ddde77db027 --- /dev/null +++ b/x11-terms/xfce4-terminal/xfce4-terminal-1.1.1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit 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.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~x64-solaris" +IUSE="utempter 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:=[gtk3(+)] + >=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 + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +src_configure() { + local myconf=( + $(use_with utempter) + $(use_enable wayland) + $(use_enable wayland gtk-layer-shell) + $(use_enable X x11) + ) + + econf "${myconf[@]}" +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |