summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-12-22 11:10:49 +0000
committerUlrich Müller <ulm@gentoo.org>2011-12-22 11:10:49 +0000
commit180752d0e07319a082285604d22ad45aac623ba4 (patch)
treef2e62bda602313d64165ad84d89f8c028932a17d /app-editors
parentVersion bump to latest. (diff)
downloadgentoo-2-180752d0e07319a082285604d22ad45aac623ba4.tar.gz
gentoo-2-180752d0e07319a082285604d22ad45aac623ba4.tar.bz2
gentoo-2-180752d0e07319a082285604d22ad45aac623ba4.zip
Version bump.
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/zile/ChangeLog7
-rw-r--r--app-editors/zile/zile-2.4.3.ebuild37
2 files changed, 43 insertions, 1 deletions
diff --git a/app-editors/zile/ChangeLog b/app-editors/zile/ChangeLog
index 0c8fb8dc18cc..595788ca3460 100644
--- a/app-editors/zile/ChangeLog
+++ b/app-editors/zile/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-editors/zile
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.159 2011/12/07 07:36:33 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.160 2011/12/22 11:10:49 ulm Exp $
+
+*zile-2.4.3 (22 Dec 2011)
+
+ 22 Dec 2011; Ulrich Mueller <ulm@gentoo.org> +zile-2.4.3.ebuild:
+ Version bump.
07 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> zile-2.4.2.ebuild:
x86 stable wrt bug #391699
diff --git a/app-editors/zile/zile-2.4.3.ebuild b/app-editors/zile/zile-2.4.3.ebuild
new file mode 100644
index 000000000000..c46bb9dd16d0
--- /dev/null
+++ b/app-editors/zile/zile-2.4.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.3.ebuild,v 1.1 2011/12/22 11:10:49 ulm Exp $
+
+EAPI=4
+
+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 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+IUSE="acl test"
+
+RDEPEND="dev-libs/boehm-gc
+ sys-libs/ncurses
+ acl? ( virtual/acl )"
+
+DEPEND="${RDEPEND}"
+
+src_configure() {
+ econf \
+ --docdir="${EPREFIX}"/usr/share/doc/${PF} \
+ --disable-silent-rules \
+ $(use_enable acl)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ # AUTHORS, FAQ, and NEWS are installed by the build system
+ dodoc README THANKS
+
+ # Zile should never install charset.alias (even on non-glibc arches)
+ rm -f "${ED}"/usr/lib/charset.alias
+}