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, 01 Apr 2022 17:10:41
Message-Id: 1648833034.8cf21be09afc4e678e1792ca9657e880b8c099de.mgorny@gentoo
1 commit: 8cf21be09afc4e678e1792ca9657e880b8c099de
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 17:08:42 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 17:10:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf21be0
7
8 x11-terms/xfce4-terminal: Bump to 1.0.0
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.0.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 a43be3e0a401..9a11507783db 100644
18 --- a/x11-terms/xfce4-terminal/Manifest
19 +++ b/x11-terms/xfce4-terminal/Manifest
20 @@ -1,2 +1,3 @@
21 DIST xfce4-terminal-0.8.10.tar.bz2 978071 BLAKE2B a74f6037b3ea28ac5561e7251368c0e039a43af1968abab86c44fee5575d1fe9c61b3521be156b48bd7084f7169fdcd9757cb6bfe0c99b539bcb865e9150e358 SHA512 92310837445adf3b611c069d28abea05650b93d54500c0436fb90e0a9be8846122d6ca69f8e6f89a11f2067dc4bfae5557bb11af48d62135b2e5eb395ccdb0f4
22 DIST xfce4-terminal-0.9.2.tar.bz2 1003043 BLAKE2B abab648e33c063235c89d241a3190fa4f7591367a548587198fd93402b344583ae8db8e25e0baaa3b13fa67d3a620370f23f84004f71b3feec8ad104b4b34cee SHA512 1be443b0a720ebc2960b604823bafedf06164b7fcf2090810efb02b817146633509d3f0319b8cb4213cb91752f4fcce469e2b398e04d854630fee44dccec8b4b
23 +DIST xfce4-terminal-1.0.0.tar.bz2 1022734 BLAKE2B e72ecced3d506e6d69d61cd6fae77dee592e4c77f679428b75900e36aeb916e9581182bb08944c31bcc1bab44c8e45f661fa8dff9d7ed5b2d748e34a392e6106 SHA512 3a7ab171f08b4e9e9628a1e69ce2a5f20a00db13ee01232fe33f86df868037394540fdc5899876a46ce200d15fd9f6603eff2508f3c66b3b4f90573d16b3f02f
24
25 diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-1.0.0.ebuild b/x11-terms/xfce4-terminal/xfce4-terminal-1.0.0.ebuild
26 new file mode 100644
27 index 000000000000..515d1165885b
28 --- /dev/null
29 +++ b/x11-terms/xfce4-terminal/xfce4-terminal-1.0.0.ebuild
30 @@ -0,0 +1,50 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit xdg-utils
37 +
38 +DESCRIPTION="A terminal emulator for the Xfce desktop environment"
39 +HOMEPAGE="https://docs.xfce.org/apps/terminal/start"
40 +SRC_URI="https://archive.xfce.org/src/apps/${PN}/$(ver_cut 1-2)/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
45 +IUSE="utempter"
46 +
47 +RDEPEND="
48 + >=dev-libs/glib-2.42:2=
49 + >=x11-libs/gtk+-3.22:3=
50 + x11-libs/libX11:=
51 + >=x11-libs/vte-0.51.3:2.91=
52 + >=xfce-base/libxfce4ui-4.16:=[gtk3(+)]
53 + >=xfce-base/xfconf-4.16:=
54 + utempter? ( sys-libs/libutempter:= )
55 +"
56 +DEPEND="
57 + ${RDEPEND}
58 +"
59 +BDEPEND="
60 + dev-libs/libxml2
61 + dev-util/intltool
62 + sys-devel/gettext
63 + virtual/pkgconfig
64 +"
65 +
66 +src_configure() {
67 + local myconf=(
68 + $(use_with utempter)
69 + )
70 +
71 + econf "${myconf[@]}"
72 +}
73 +
74 +pkg_postinst() {
75 + xdg_icon_cache_update
76 +}
77 +
78 +pkg_postrm() {
79 + xdg_icon_cache_update
80 +}