summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-09-06 22:01:58 +0000
committerUlrich Müller <ulm@gentoo.org>2009-09-06 22:01:58 +0000
commit1bd7520afb6d801c05099aa9b67d48fe0a91879c (patch)
treee40c58acd7e63e462000ec60bfba47e4373f7e83 /app-editors/zile
parentRemoved unused patch. (diff)
downloadgentoo-2-1bd7520afb6d801c05099aa9b67d48fe0a91879c.tar.gz
gentoo-2-1bd7520afb6d801c05099aa9b67d48fe0a91879c.tar.bz2
gentoo-2-1bd7520afb6d801c05099aa9b67d48fe0a91879c.zip
Version bump.
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'app-editors/zile')
-rw-r--r--app-editors/zile/ChangeLog7
-rw-r--r--app-editors/zile/zile-2.3.11.ebuild29
2 files changed, 35 insertions, 1 deletions
diff --git a/app-editors/zile/ChangeLog b/app-editors/zile/ChangeLog
index df429b3cb032..2c31f45fc9b4 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.101 2009/08/31 13:17:37 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.102 2009/09/06 22:01:58 ulm Exp $
+
+*zile-2.3.11 (06 Sep 2009)
+
+ 06 Sep 2009; Ulrich Mueller <ulm@gentoo.org> +zile-2.3.11.ebuild:
+ Version bump.
31 Aug 2009; Christian Faulhammer <fauli@gentoo.org> -zile-2.3.7.ebuild:
clean up
diff --git a/app-editors/zile/zile-2.3.11.ebuild b/app-editors/zile/zile-2.3.11.ebuild
new file mode 100644
index 000000000000..96fe439c50c6
--- /dev/null
+++ b/app-editors/zile/zile-2.3.11.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.11.ebuild,v 1.1 2009/09/06 22:01:58 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
+}