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: Tue, 22 Dec 2020 23:35:58
Message-Id: 1608680138.f2d9408d9bbedc89fa8846c7305128b14daa67bc.mgorny@gentoo
1 commit: f2d9408d9bbedc89fa8846c7305128b14daa67bc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 22 23:18:07 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 22 23:35:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d9408d
7
8 x11-terms/xfce4-terminal: Bump to 0.8.10
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-0.8.10.ebuild | 45 ++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/x11-terms/xfce4-terminal/Manifest b/x11-terms/xfce4-terminal/Manifest
17 index 8aa5abb123c..8ec54891ec8 100644
18 --- a/x11-terms/xfce4-terminal/Manifest
19 +++ b/x11-terms/xfce4-terminal/Manifest
20 @@ -1 +1,2 @@
21 +DIST xfce4-terminal-0.8.10.tar.bz2 978071 BLAKE2B a74f6037b3ea28ac5561e7251368c0e039a43af1968abab86c44fee5575d1fe9c61b3521be156b48bd7084f7169fdcd9757cb6bfe0c99b539bcb865e9150e358 SHA512 92310837445adf3b611c069d28abea05650b93d54500c0436fb90e0a9be8846122d6ca69f8e6f89a11f2067dc4bfae5557bb11af48d62135b2e5eb395ccdb0f4
22 DIST xfce4-terminal-0.8.9.2.tar.bz2 945176 BLAKE2B a37a665601c5bdb2f53cd62a0909befaabd9bca0747d477fe369f4e325be15a362d249ae675e6cf707ecc89e623b4b1d73f7a31d32f6c6fcc13e4c57684f5d4b SHA512 1402d913bcc0c050b6c83405c754cdec71cf9bb56e2e68e4396d7ce48bec6e1b0cc875ea3ea2f7a0dff8280d306519fd74a8f9d9ebca383a8f295991cb9ddd94
23
24 diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-0.8.10.ebuild b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.10.ebuild
25 new file mode 100644
26 index 00000000000..444db2416bc
27 --- /dev/null
28 +++ b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.10.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
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 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
44 +IUSE="utempter"
45 +
46 +RDEPEND=">=dev-libs/glib-2.42:2=
47 + >=x11-libs/gtk+-3.22:3=
48 + x11-libs/libX11:=
49 + >=x11-libs/vte-0.46:2.91=
50 + >=xfce-base/libxfce4ui-4.14:=[gtk3(+)]
51 + >=xfce-base/xfconf-4.14:=
52 + utempter? ( sys-libs/libutempter:= )"
53 +DEPEND="${RDEPEND}"
54 +BDEPEND="
55 + dev-libs/libxml2
56 + dev-util/intltool
57 + sys-devel/gettext
58 + virtual/pkgconfig"
59 +
60 +src_configure() {
61 + local myconf=(
62 + $(use_with utempter)
63 + )
64 +
65 + econf "${myconf[@]}"
66 +}
67 +
68 +pkg_postinst() {
69 + xdg_icon_cache_update
70 +}
71 +
72 +pkg_postrm() {
73 + xdg_icon_cache_update
74 +}