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/, x11-terms/lilyterm/files/
Date: Tue, 06 Oct 2015 05:31:21
Message-Id: 1444109465.51c3f614265382f8cb57992f272929be9cf32932.jer@gentoo
1 commit: 51c3f614265382f8cb57992f272929be9cf32932
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 6 05:31:05 2015 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 6 05:31:05 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c3f614
7
8 x11-terms/lilyterm: Fix .mo naming by Oleg (bug #562360).
9
10 Package-Manager: portage-2.2.22
11
12 .../lilyterm/files/lilyterm-0.9.9.4-gettext.patch | 12 ++++++++
13 x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild | 32 ++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch b/x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch
17 new file mode 100644
18 index 0000000..c6df78d
19 --- /dev/null
20 +++ b/x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch
21 @@ -0,0 +1,12 @@
22 +--- a/configure.ac
23 ++++ b/configure.ac
24 +@@ -51,7 +51,7 @@
25 +
26 + AC_PROG_INTLTOOL
27 + ALL_LINGUAS="$_LANG_LIST"
28 +-GETTEXT_PACKAGE="$_PACKAGE"
29 ++GETTEXT_PACKAGE="$_BINARY"
30 + AC_SUBST(GETTEXT_PACKAGE)
31 + AM_GLIB_GNU_GETTEXT
32 + AM_GLIB_DEFINE_LOCALEDIR(LOCALEDIR)
33 +
34
35 diff --git a/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild b/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild
36 new file mode 100644
37 index 0000000..f024b95
38 --- /dev/null
39 +++ b/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild
40 @@ -0,0 +1,32 @@
41 +# Copyright 1999-2013 Gentoo Foundation
42 +# Distributed under the terms of the GNU General Public License v2
43 +# $Id$
44 +
45 +EAPI=5
46 +inherit eutils
47 +
48 +DESCRIPTION="a terminal emulator based off of libvte that aims to be fast and lightweight"
49 +HOMEPAGE="http://lilyterm.luna.com.tw"
50 +LICENSE="GPL-3"
51 +SRC_URI="http://${PN}.luna.com.tw/file/${P}.tar.gz"
52 +
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~x86"
55 +
56 +RDEPEND="
57 + x11-libs/vte:0
58 +"
59 +DEPEND="
60 + ${RDEPEND}
61 + dev-util/intltool
62 + sys-devel/gettext
63 + virtual/pkgconfig
64 +"
65 +
66 +DOCS=( AUTHORS ChangeLog README TODO )
67 +
68 +src_prepare() {
69 + epatch "${FILESDIR}"/${PN}-0.9.9.4-gettext.patch
70 +
71 + ./autogen.sh
72 +}