Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/xfce4-terminal/
Date: Fri, 13 May 2022 04:28:03
Message-Id: 1652415765.041c0af660f62003b2dbdfa97ef407f77b0178fb.mgorny@gentoo
1 commit: 041c0af660f62003b2dbdfa97ef407f77b0178fb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 13 04:22:45 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 04:22:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=041c0af6
7
8 x11-terms/xfce4-terminal: Bump to 1.0.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 x11-terms/xfce4-terminal/Manifest | 1 +
13 .../xfce4-terminal/xfce4-terminal-1.0.3.ebuild | 50 ++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/x11-terms/xfce4-terminal/Manifest b/x11-terms/xfce4-terminal/Manifest
17 index 3020e46d02b3..16dc48630c69 100644
18 --- a/x11-terms/xfce4-terminal/Manifest
19 +++ b/x11-terms/xfce4-terminal/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-terminal-1.0.2.tar.bz2 1001720 BLAKE2B c3759f5199da51ffae3bcacb0c1cfcfd54d9c4e11f52c7681ca335042164a0311990174defc0ef82cbb3aea6e6cf89400dd9de4406e3843d17f5da8e7ed048fe SHA512 0ac33e01b2975c2ab4cc6078075ba83a77c260ea914e89d1dce8393c307aa4956f0cb0db13c3ecff0bec7659d33e02834343211852787a691b61a19d40a0c757
22 +DIST xfce4-terminal-1.0.3.tar.bz2 1000750 BLAKE2B 7d8f39725619f9c67b671a0ba3f358c448e53b47d8454233ab97c31735a64d6050e180d1612cbaa9cddf619daf9b12dbb77d97e0737f81337ffe5cb5d9303e4a SHA512 b9d93c3def9cd1237b985ee95664e210595f450e78b9e23fd5928d66cd978fca38db8be1e3c2968b6cb9a8abb5ab978975eed6b8afa3b49509fecf16b66580d3
23
24 diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-1.0.3.ebuild b/x11-terms/xfce4-terminal/xfce4-terminal-1.0.3.ebuild
25 new file mode 100644
26 index 000000000000..515d1165885b
27 --- /dev/null
28 +++ b/x11-terms/xfce4-terminal/xfce4-terminal-1.0.3.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="A terminal emulator for the Xfce desktop environment"
38 +HOMEPAGE="https://docs.xfce.org/apps/terminal/start"
39 +SRC_URI="https://archive.xfce.org/src/apps/${PN}/$(ver_cut 1-2)/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
44 +IUSE="utempter"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.42:2=
48 + >=x11-libs/gtk+-3.22:3=
49 + x11-libs/libX11:=
50 + >=x11-libs/vte-0.51.3:2.91=
51 + >=xfce-base/libxfce4ui-4.16:=[gtk3(+)]
52 + >=xfce-base/xfconf-4.16:=
53 + utempter? ( sys-libs/libutempter:= )
54 +"
55 +DEPEND="
56 + ${RDEPEND}
57 +"
58 +BDEPEND="
59 + dev-libs/libxml2
60 + dev-util/intltool
61 + sys-devel/gettext
62 + virtual/pkgconfig
63 +"
64 +
65 +src_configure() {
66 + local myconf=(
67 + $(use_with utempter)
68 + )
69 +
70 + econf "${myconf[@]}"
71 +}
72 +
73 +pkg_postinst() {
74 + xdg_icon_cache_update
75 +}
76 +
77 +pkg_postrm() {
78 + xdg_icon_cache_update
79 +}