Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/lilyterm/
Date: Sat, 28 Jul 2018 11:38:57
Message-Id: 1532777919.9b620f99df9993273d39224fe119c904ec92efe1.jer@gentoo
1 commit: 9b620f99df9993273d39224fe119c904ec92efe1
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 28 11:17:08 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 11:38:39 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b620f99
7
8 x11-terms/lilyterm: Add live ebuild.
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 x11-terms/lilyterm/lilyterm-99999.ebuild | 31 +++++++++++++++++++++++++++++++
13 1 file changed, 31 insertions(+)
14
15 diff --git a/x11-terms/lilyterm/lilyterm-99999.ebuild b/x11-terms/lilyterm/lilyterm-99999.ebuild
16 new file mode 100644
17 index 00000000000..402106af665
18 --- /dev/null
19 +++ b/x11-terms/lilyterm/lilyterm-99999.ebuild
20 @@ -0,0 +1,31 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit git-r3
26 +
27 +DESCRIPTION="a terminal emulator based off of libvte that aims to be fast and lightweight"
28 +HOMEPAGE="https://lilyterm.luna.com.tw"
29 +EGIT_REPO_URI="https://github.com/Tetralet/LilyTerm"
30 +
31 +SLOT="0"
32 +LICENSE="GPL-3"
33 +KEYWORDS=""
34 +
35 +RDEPEND="
36 + x11-libs/vte:0
37 +"
38 +DEPEND="
39 + ${RDEPEND}
40 + dev-util/intltool
41 + sys-devel/gettext
42 + virtual/pkgconfig
43 +"
44 +
45 +DOCS=( AUTHORS ChangeLog README TODO )
46 +
47 +src_prepare() {
48 + default
49 +
50 + ./autogen.sh || die
51 +}