Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/tilda/
Date: Mon, 11 Jun 2018 19:43:23
Message-Id: 1528746151.7ebd90f84b9832fdf66413ee05e424e50f7a80ea.zlogene@gentoo
1 commit: 7ebd90f84b9832fdf66413ee05e424e50f7a80ea
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 11 19:42:31 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 11 19:42:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ebd90f8
7
8 x11-terms/tilda: Version bump
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 x11-terms/tilda/Manifest | 1 +
13 x11-terms/tilda/tilda-1.4.1.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/x11-terms/tilda/Manifest b/x11-terms/tilda/Manifest
17 index 02a8777cd8c..35cd826bf93 100644
18 --- a/x11-terms/tilda/Manifest
19 +++ b/x11-terms/tilda/Manifest
20 @@ -1 +1,2 @@
21 DIST tilda-0.9.6.tar.gz 307517 BLAKE2B dba49f28cf92a514977da5f8099e7f19366723b89785c9d9897138500eac7281a97d3ea3365acb08f17edb0a71ffe3a63d631987aaf39aa6e0058290f037e9dc SHA512 7d0ddaf289de2c3f9f48f5cce3ee71534b9fdd91f79a4e56a32a301fd8fc82c4a3d760cfcd16d8d2e2d9f0d963b8130547720563ab15c2bb2220ff546ea562b0
22 +DIST tilda-1.4.1.tar.gz 471340 BLAKE2B a84d125bf81e384706347401ebbf7b11813bf5ed422e6b374e918ed564b9bfe168ebf3fef163b91a15350b49166b0040e90afdef716cc1762ecc410710f72c29 SHA512 d16878e762d94f94c219e8e711223a771a2ab816f02573f693cfbcfa0eee5aafff8a274898a65df168c0bf78258aa16e5a3be6b0c3dee418af61c68f43ed74c6
23
24 diff --git a/x11-terms/tilda/tilda-1.4.1.ebuild b/x11-terms/tilda/tilda-1.4.1.ebuild
25 new file mode 100644
26 index 00000000000..ad1b85bd86f
27 --- /dev/null
28 +++ b/x11-terms/tilda/tilda-1.4.1.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit autotools flag-o-matic
36 +
37 +DESCRIPTION="A drop down terminal, similar to the consoles found in first person shooters"
38 +HOMEPAGE="https://github.com/lanoxx/tilda"
39 +SRC_URI="https://github.com/lanoxx/tilda/archive/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
44 +IUSE=""
45 +
46 +RDEPEND="x11-libs/vte:0
47 + >=dev-libs/glib-2.8.4:2
48 + dev-libs/confuse
49 + gnome-base/libglade
50 + x11-libs/libX11"
51 +DEPEND="${RDEPEND}
52 + virtual/pkgconfig
53 + sys-devel/gettext"
54 +
55 +S="${WORKDIR}/${PN}-${P}"
56 +
57 +src_prepare() {
58 + default
59 + append-cflags -std=c99
60 + eautoreconf
61 +}