From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8394713888F for ; Tue, 6 Oct 2015 05:31:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6601E0870; Tue, 6 Oct 2015 05:31:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6EE08E0870 for ; Tue, 6 Oct 2015 05:31:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57604340771 for ; Tue, 6 Oct 2015 05:31:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18F9DA35 for ; Tue, 6 Oct 2015 05:31:17 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1444109465.51c3f614265382f8cb57992f272929be9cf32932.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/lilyterm/, x11-terms/lilyterm/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild X-VCS-Directories: x11-terms/lilyterm/files/ x11-terms/lilyterm/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 51c3f614265382f8cb57992f272929be9cf32932 X-VCS-Branch: master Date: Tue, 6 Oct 2015 05:31:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: caf7f183-87da-4de0-81e2-2957ad4cc85e X-Archives-Hash: 64b71e38eb53623ecc278373d30e2345 commit: 51c3f614265382f8cb57992f272929be9cf32932 Author: Jeroen Roovers gentoo org> AuthorDate: Tue Oct 6 05:31:05 2015 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue Oct 6 05:31:05 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c3f614 x11-terms/lilyterm: Fix .mo naming by Oleg (bug #562360). Package-Manager: portage-2.2.22 .../lilyterm/files/lilyterm-0.9.9.4-gettext.patch | 12 ++++++++ x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) 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 new file mode 100644 index 0000000..c6df78d --- /dev/null +++ b/x11-terms/lilyterm/files/lilyterm-0.9.9.4-gettext.patch @@ -0,0 +1,12 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -51,7 +51,7 @@ + + AC_PROG_INTLTOOL + ALL_LINGUAS="$_LANG_LIST" +-GETTEXT_PACKAGE="$_PACKAGE" ++GETTEXT_PACKAGE="$_BINARY" + AC_SUBST(GETTEXT_PACKAGE) + AM_GLIB_GNU_GETTEXT + AM_GLIB_DEFINE_LOCALEDIR(LOCALEDIR) + diff --git a/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild b/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild new file mode 100644 index 0000000..f024b95 --- /dev/null +++ b/x11-terms/lilyterm/lilyterm-0.9.9.4-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils + +DESCRIPTION="a terminal emulator based off of libvte that aims to be fast and lightweight" +HOMEPAGE="http://lilyterm.luna.com.tw" +LICENSE="GPL-3" +SRC_URI="http://${PN}.luna.com.tw/file/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + x11-libs/vte:0 +" +DEPEND=" + ${RDEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +DOCS=( AUTHORS ChangeLog README TODO ) + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.9.9.4-gettext.patch + + ./autogen.sh +}