summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-10-29 09:45:39 +0000
committerUlrich Müller <ulm@gentoo.org>2009-10-29 09:45:39 +0000
commitca069240c861ff3778b173edaa2db6ec0f244f33 (patch)
tree9ae3604590692664fb8d429c77dee7b02966bff1 /app-editors
parentVersion bump, bug #290970. Also add net-ftp as herd (diff)
downloadgentoo-2-ca069240c861ff3778b173edaa2db6ec0f244f33.tar.gz
gentoo-2-ca069240c861ff3778b173edaa2db6ec0f244f33.tar.bz2
gentoo-2-ca069240c861ff3778b173edaa2db6ec0f244f33.zip
Version bump. Remove old.
(Portage version: 2.2_rc46/cvs/Linux i686)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/zile/ChangeLog7
-rw-r--r--app-editors/zile/zile-2.3.13.ebuild29
2 files changed, 35 insertions, 1 deletions
diff --git a/app-editors/zile/ChangeLog b/app-editors/zile/ChangeLog
index 5181b73cb0d7..5f1a6ccaf302 100644
--- a/app-editors/zile/ChangeLog
+++ b/app-editors/zile/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-editors/zile
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.103 2009/09/23 17:02:29 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.104 2009/10/29 09:45:39 ulm Exp $
+
+*zile-2.3.13 (29 Oct 2009)
+
+ 29 Oct 2009; Ulrich Mueller <ulm@gentoo.org> +zile-2.3.13.ebuild:
+ Version bump. Remove old.
*zile-2.3.12 (23 Sep 2009)
diff --git a/app-editors/zile/zile-2.3.13.ebuild b/app-editors/zile/zile-2.3.13.ebuild
new file mode 100644
index 000000000000..15ffc541c64d
--- /dev/null
+++ b/app-editors/zile/zile-2.3.13.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.3.13.ebuild,v 1.1 2009/10/29 09:45:39 ulm Exp $
+
+EAPI=2
+
+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"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
+IUSE="test valgrind"
+
+RDEPEND="sys-libs/ncurses"
+DEPEND="${RDEPEND}
+ sys-apps/help2man
+ test? ( valgrind? ( dev-util/valgrind ) )"
+
+src_configure() {
+ econf $(use test && use_with valgrind || echo "--without-valgrind")
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ # FAQ is installed by the build system in /usr/share/zile
+ dodoc AUTHORS BUGS NEWS README THANKS || die
+}