Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxterminal/
Date: Mon, 28 Sep 2020 11:12:22
Message-Id: 1601291529.adffe64f47325af8ce665bbbb1493a07cd5505bc.juippis@gentoo
1 commit: adffe64f47325af8ce665bbbb1493a07cd5505bc
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Thu Sep 17 06:46:04 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 11:12:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adffe64f
7
8 lxde-base/lxterminal: port to EAPI 7, tidy up ebuild
9
10 - Adjust DEPEND -> BDEPEND
11 - Update icon cache
12 - Remove ${PV} == *9999* logic
13 - Install locales unconditionally
14
15 Closes: https://bugs.gentoo.org/739838
16 Package-Manager: Portage-3.0.4, Repoman-3.0.1
17 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
18 Closes: https://github.com/gentoo/gentoo/pull/17359
19 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
20
21 lxde-base/lxterminal/lxterminal-0.3.2-r1.ebuild | 36 +++++++++++++++++++++++++
22 1 file changed, 36 insertions(+)
23
24 diff --git a/lxde-base/lxterminal/lxterminal-0.3.2-r1.ebuild b/lxde-base/lxterminal/lxterminal-0.3.2-r1.ebuild
25 new file mode 100644
26 index 00000000000..be9747b8651
27 --- /dev/null
28 +++ b/lxde-base/lxterminal/lxterminal-0.3.2-r1.ebuild
29 @@ -0,0 +1,36 @@
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 autotools xdg
36 +
37 +DESCRIPTION="Lightweight vte-based tabbed terminal emulator for LXDE"
38 +HOMEPAGE="https://wiki.lxde.org/en/LXTerminal"
39 +SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
44 +IUSE="gtk3"
45 +
46 +DEPEND="dev-libs/glib:2
47 + !gtk3? (
48 + x11-libs/gtk+:2
49 + x11-libs/vte:0 )
50 + gtk3? (
51 + x11-libs/gtk+:3
52 + x11-libs/vte:2.91 )"
53 +RDEPEND="${DEPEND}"
54 +BDEPEND="virtual/pkgconfig
55 + sys-devel/gettext
56 + >=dev-util/intltool-0.40.0"
57 +
58 +src_prepare() {
59 + default
60 + eautoreconf
61 +}
62 +
63 +src_configure() {
64 + econf --enable-man $(use_enable gtk3)
65 +}