x11-terms/lilyterm: Fix autogen.sh.
authorJeroen Roovers <jer@gentoo.org>
Sat, 28 Jul 2018 11:36:24 +0000 (13:36 +0200)
committerJeroen Roovers <jer@gentoo.org>
Sat, 28 Jul 2018 11:38:47 +0000 (13:38 +0200)
Package-Manager: Portage-2.3.43, Repoman-2.3.10

x11-terms/lilyterm/files/lilyterm-0.9.9.4-autogen.patch [new file with mode: 0644]
x11-terms/lilyterm/lilyterm-0.9.9.4-r2.ebuild [new file with mode: 0644]

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
new file mode 100644 (file)
index 0000000..a4f3674
--- /dev/null
@@ -0,0 +1,15 @@
+--- a/autogen.sh
++++ b/autogen.sh
+@@ -43,12 +43,3 @@
+ AC_FILE='src/Makefile.am'
+ Replace_Parameter BINARY
+ echo ""
+-
+-set -x
+-
+-aclocal
+-autoheader
+-intltoolize --automake --copy --force
+-automake --add-missing --copy
+-autoconf
+-
diff --git a/x11-terms/lilyterm/lilyterm-0.9.9.4-r2.ebuild b/x11-terms/lilyterm/lilyterm-0.9.9.4-r2.ebuild
new file mode 100644 (file)
index 0000000..8221d88
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+DESCRIPTION="a terminal emulator based off of libvte that aims to be fast and lightweight"
+HOMEPAGE="https://lilyterm.luna.com.tw"
+LICENSE="GPL-3"
+SRC_URI="https://${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 )
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.9.9.4-autogen.patch
+       "${FILESDIR}"/${PN}-0.9.9.4-gettext.patch
+)
+
+src_prepare() {
+       default
+
+       ./autogen.sh || die
+       eautoreconf
+}