Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxterminal/
Date: Wed, 12 Dec 2018 11:06:43
Message-Id: 1544612788.73ff80f69758a022160b8e485bccd91839e7c2d2.hanno@gentoo
1 commit: 73ff80f69758a022160b8e485bccd91839e7c2d2
2 Author: Hanno <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 12 11:06:28 2018 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 12 11:06:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73ff80f6
7
8 lxde-base/lxterminal: Version bump
9
10 Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12
13 lxde-base/lxterminal/Manifest | 1 +
14 lxde-base/lxterminal/lxterminal-0.3.2.ebuild | 47 ++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/lxde-base/lxterminal/Manifest b/lxde-base/lxterminal/Manifest
18 index 2968ffbefa4..a8da3679633 100644
19 --- a/lxde-base/lxterminal/Manifest
20 +++ b/lxde-base/lxterminal/Manifest
21 @@ -1 +1,2 @@
22 DIST lxterminal-0.3.1.tar.xz 197628 BLAKE2B 9448855b6d1bfc3fc272ec40f7e5b4fde1dfcb861254db3ed35b73611fd2dc5ca5d760542251f297289a051913e6eb6d669b2c04b194e01862ff7e79305c2e14 SHA512 3063eb7bc7426293d35dc1d9c32d5841e4c3f0b417f3cfa3e5a7bf4d9b71df9c9d375d53d6dd6694b318085ba07167bd8403b2caea9c6e9197aef4b7802877fc
23 +DIST lxterminal-0.3.2.tar.xz 198348 BLAKE2B 7b24a138dd48bb6dc85a253b21e897e68d1a7e16a0d30aa45a87b4b97540c996b6a196d8f8be6fb37d9e506544878bd3eb65fe098d4d695be51e94b3ff15cd6b SHA512 0711d6eeed1f7e301fd24e0d5f750a48f29cc10c7cd40bcc1de57cceddfe4cb15718e9fb812da975faff24aed99cdd3978cb5f29838f47e276fce47f01577119
24
25 diff --git a/lxde-base/lxterminal/lxterminal-0.3.2.ebuild b/lxde-base/lxterminal/lxterminal-0.3.2.ebuild
26 new file mode 100644
27 index 00000000000..a11e78007f3
28 --- /dev/null
29 +++ b/lxde-base/lxterminal/lxterminal-0.3.2.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PLOCALES="af ar be bg bn bn_IN ca cs da de el en_GB eo es et eu fa fi fo fr frp gl
37 +he hr hu id is it ja kk ko lg lt ml ms nb nl nn pa pl ps pt pt_BR ro ru sk sl sr
38 +sr@latin sv te th tr tt_RU ug uk ur ur_PK vi zh_CN zh_TW"
39 +PLOCALE_BACKUP="en_GB"
40 +
41 +inherit autotools l10n
42 +
43 +DESCRIPTION="Lightweight vte-based tabbed terminal emulator for LXDE"
44 +HOMEPAGE="https://wiki.lxde.org/en/LXTerminal"
45 +
46 +if [[ ${PV} == *9999* ]]; then
47 + EGIT_REPO_URI="https://git.code.sf.net/p/lxde/${PN}"
48 + inherit git-r3
49 + KEYWORDS="amd64 arm ppc x86"
50 +else
51 + SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
52 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
53 +fi
54 +
55 +LICENSE="GPL-2"
56 +SLOT="0"
57 +IUSE="gtk3"
58 +
59 +RDEPEND="dev-libs/glib:2
60 + !gtk3? ( x11-libs/gtk+:2 x11-libs/vte:0 )
61 + gtk3? ( x11-libs/gtk+:3 x11-libs/vte:2.91 )"
62 +DEPEND="${RDEPEND}
63 + virtual/pkgconfig
64 + sys-devel/gettext
65 + >=dev-util/intltool-0.40.0"
66 +
67 +src_prepare() {
68 + default
69 + eautoreconf
70 +
71 + export LINGUAS="${LINGUAS:-${PLOCALE_BACKUP}}"
72 + l10n_get_locales > po/LINGUAS || die
73 +}
74 +
75 +src_configure() {
76 + econf --enable-man $(use_enable gtk3)
77 +}