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/files/, x11-terms/lilyterm/
Date: Sat, 28 Jul 2018 11:38:55
Message-Id: 1532777927.c288bb887d1f62b472e6397dc0d6dc0adbcb1730.jer@gentoo
1 commit: c288bb887d1f62b472e6397dc0d6dc0adbcb1730
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 28 11:36:24 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 28 11:38:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c288bb88
7
8 x11-terms/lilyterm: Fix autogen.sh.
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 .../lilyterm/files/lilyterm-0.9.9.4-autogen.patch | 15 +++++++++
13 x11-terms/lilyterm/lilyterm-0.9.9.4-r2.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/x11-terms/lilyterm/files/lilyterm-0.9.9.4-autogen.patch b/x11-terms/lilyterm/files/lilyterm-0.9.9.4-autogen.patch
17 new file mode 100644
18 index 00000000000..a4f36748417
19 --- /dev/null
20 +++ b/x11-terms/lilyterm/files/lilyterm-0.9.9.4-autogen.patch
21 @@ -0,0 +1,15 @@
22 +--- a/autogen.sh
23 ++++ b/autogen.sh
24 +@@ -43,12 +43,3 @@
25 + AC_FILE='src/Makefile.am'
26 + Replace_Parameter BINARY
27 + echo ""
28 +-
29 +-set -x
30 +-
31 +-aclocal
32 +-autoheader
33 +-intltoolize --automake --copy --force
34 +-automake --add-missing --copy
35 +-autoconf
36 +-
37
38 diff --git a/x11-terms/lilyterm/lilyterm-0.9.9.4-r2.ebuild b/x11-terms/lilyterm/lilyterm-0.9.9.4-r2.ebuild
39 new file mode 100644
40 index 00000000000..8221d88b0e3
41 --- /dev/null
42 +++ b/x11-terms/lilyterm/lilyterm-0.9.9.4-r2.ebuild
43 @@ -0,0 +1,36 @@
44 +# Copyright 1999-2018 Gentoo Foundation
45 +# Distributed under the terms of the GNU General Public License v2
46 +
47 +EAPI=6
48 +inherit autotools
49 +
50 +DESCRIPTION="a terminal emulator based off of libvte that aims to be fast and lightweight"
51 +HOMEPAGE="https://lilyterm.luna.com.tw"
52 +LICENSE="GPL-3"
53 +SRC_URI="https://${PN}.luna.com.tw/file/${P}.tar.gz"
54 +
55 +SLOT="0"
56 +KEYWORDS="~amd64 ~x86"
57 +
58 +RDEPEND="
59 + x11-libs/vte:0
60 +"
61 +DEPEND="
62 + ${RDEPEND}
63 + dev-util/intltool
64 + sys-devel/gettext
65 + virtual/pkgconfig
66 +"
67 +
68 +DOCS=( AUTHORS ChangeLog README TODO )
69 +PATCHES=(
70 + "${FILESDIR}"/${PN}-0.9.9.4-autogen.patch
71 + "${FILESDIR}"/${PN}-0.9.9.4-gettext.patch
72 +)
73 +
74 +src_prepare() {
75 + default
76 +
77 + ./autogen.sh || die
78 + eautoreconf
79 +}