From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1039192-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 97977138334 for <garchives@archives.gentoo.org>; Sat, 28 Jul 2018 11:38:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AF33E0825; Sat, 28 Jul 2018 11:38:54 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4069FE0825 for <gentoo-commits@lists.gentoo.org>; Sat, 28 Jul 2018 11:38:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64125335CCD for <gentoo-commits@lists.gentoo.org>; Sat, 28 Jul 2018 11:38:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66CF5388 for <gentoo-commits@lists.gentoo.org>; Sat, 28 Jul 2018 11:38:50 +0000 (UTC) From: "Jeroen Roovers" <jer@gentoo.org> 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" <jer@gentoo.org> Message-ID: <1532777919.9b620f99df9993273d39224fe119c904ec92efe1.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/lilyterm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/lilyterm/lilyterm-99999.ebuild X-VCS-Directories: x11-terms/lilyterm/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 9b620f99df9993273d39224fe119c904ec92efe1 X-VCS-Branch: master Date: Sat, 28 Jul 2018 11:38:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7cc3d89f-aa50-41a0-b5c1-05d92aee41be X-Archives-Hash: 194ce1b1f966c17e7ea695fde1e94763 commit: 9b620f99df9993273d39224fe119c904ec92efe1 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Sat Jul 28 11:17:08 2018 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Sat Jul 28 11:38:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b620f99 x11-terms/lilyterm: Add live ebuild. Package-Manager: Portage-2.3.43, Repoman-2.3.10 x11-terms/lilyterm/lilyterm-99999.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/x11-terms/lilyterm/lilyterm-99999.ebuild b/x11-terms/lilyterm/lilyterm-99999.ebuild new file mode 100644 index 00000000000..402106af665 --- /dev/null +++ b/x11-terms/lilyterm/lilyterm-99999.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit git-r3 + +DESCRIPTION="a terminal emulator based off of libvte that aims to be fast and lightweight" +HOMEPAGE="https://lilyterm.luna.com.tw" +EGIT_REPO_URI="https://github.com/Tetralet/LilyTerm" + +SLOT="0" +LICENSE="GPL-3" +KEYWORDS="" + +RDEPEND=" + x11-libs/vte:0 +" +DEPEND=" + ${RDEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +DOCS=( AUTHORS ChangeLog README TODO ) + +src_prepare() { + default + + ./autogen.sh || die +}