summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2008-12-16 11:39:33 +0000
committerUlrich Müller <ulm@gentoo.org>2008-12-16 11:39:33 +0000
commit07062207bd6c2f42bb69604f023d892907f68a2d (patch)
tree74810a34e98ac2f03801fe687f91e81c8779e0bf /app-editors/zile
parentStable for HPPA (bug #250928). (diff)
downloadgentoo-2-07062207bd6c2f42bb69604f023d892907f68a2d.tar.gz
gentoo-2-07062207bd6c2f42bb69604f023d892907f68a2d.tar.bz2
gentoo-2-07062207bd6c2f42bb69604f023d892907f68a2d.zip
Version bump.
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-gentoo-r4 i686)
Diffstat (limited to 'app-editors/zile')
-rw-r--r--app-editors/zile/ChangeLog8
-rw-r--r--app-editors/zile/files/zile-2.3.0-splash.patch31
-rw-r--r--app-editors/zile/zile-2.3.0.ebuild28
3 files changed, 66 insertions, 1 deletions
diff --git a/app-editors/zile/ChangeLog b/app-editors/zile/ChangeLog
index 0ad12b4cf111..282f56ec8eaa 100644
--- a/app-editors/zile/ChangeLog
+++ b/app-editors/zile/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-editors/zile
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.71 2008/10/08 12:13:34 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.72 2008/12/16 11:39:33 ulm Exp $
+
+*zile-2.3.0 (16 Dec 2008)
+
+ 16 Dec 2008; Ulrich Mueller <ulm@gentoo.org>
+ +files/zile-2.3.0-splash.patch, +zile-2.3.0.ebuild:
+ Version bump.
28 Sep 2008; Ulrich Mueller <ulm@gentoo.org> ChangeLog:
Add FDL-1.2 to LICENSE.
diff --git a/app-editors/zile/files/zile-2.3.0-splash.patch b/app-editors/zile/files/zile-2.3.0-splash.patch
new file mode 100644
index 000000000000..1d24021fc767
--- /dev/null
+++ b/app-editors/zile/files/zile-2.3.0-splash.patch
@@ -0,0 +1,31 @@
+Remove mention of removed help commands.
+From upstream, part of the following commit:
+http://git.savannah.gnu.org/gitweb/?p=zile.git;a=commitdiff_plain;h=6c3db79604ec1c30f150d3af7a6087b165266dd4
+
+--- a/src/main.c
++++ b/src/main.c
+@@ -90,21 +90,17 @@ static char about_splash_str[] = "\
+ " ZILE_COPYRIGHT_STRING "\n\
+ \n\
+ Type `C-x C-c' to exit " PACKAGE_NAME ".\n\
+-Type `C-h h' for help; `C-x u; to undo changes.\n\
+-Type `C-h C-d' for information on getting the latest version.\n\
+-Type `C-h t' for a tutorial on using " PACKAGE_NAME ".\n\
+-Type `C-h s' for a sample configuration file.\n\
++Type `C-x u; to undo changes.\n\
+ Type `C-g' at any time to quit the current operation.\n\
+ \n\
+ `C-x' means hold the CTRL key while typing the character `x'.\n\
+ `M-x' means hold the META or ALT key down while typing `x'.\n\
+ If there is no META or ALT key, instead press and release\n\
+ the ESC key and then type `x'.\n\
+-Combinations like `C-h h' mean first press `C-h', then `h'.\n\
++Combinations like `C-x u' mean first press `C-x', then `u'.\n\
+ ";
+
+-static char about_minibuf_str[] =
+- "Welcome to " PACKAGE_NAME "! For help type `C-h h'";
++static char about_minibuf_str[] = "Welcome to " PACKAGE_NAME "!";
+
+ static void
+ about_screen (void)
diff --git a/app-editors/zile/zile-2.3.0.ebuild b/app-editors/zile/zile-2.3.0.ebuild
new file mode 100644
index 000000000000..e32f73bd3bae
--- /dev/null
+++ b/app-editors/zile/zile-2.3.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.3.0.ebuild,v 1.1 2008/12/16 11:39:33 ulm Exp $
+
+inherit eutils
+
+DESCRIPTION="Zile is a small Emacs clone"
+HOMEPAGE="http://www.gnu.org/software/zile/"
+SRC_URI="mirror://gnu/zile/${P}.tar.gz"
+
+LICENSE="GPL-3 FDL-1.2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND="sys-libs/ncurses
+ >=sys-apps/texinfo-4.3"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}/${P}-splash.patch"
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS BUGS NEWS README THANKS || die "dodoc failed"
+}