diff options
author | Ulrich Müller <ulm@gentoo.org> | 2012-02-15 20:40:56 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2012-02-15 20:40:56 +0000 |
commit | f61d6ded0e1d8c93691745bf4ddc2a435ac8ac83 (patch) | |
tree | 22b468d51941ab4255833ac28671b85e06608870 /app-editors | |
parent | Version Bump. Compatible with linux 3.2.x (diff) | |
download | gentoo-2-f61d6ded0e1d8c93691745bf4ddc2a435ac8ac83.tar.gz gentoo-2-f61d6ded0e1d8c93691745bf4ddc2a435ac8ac83.tar.bz2 gentoo-2-f61d6ded0e1d8c93691745bf4ddc2a435ac8ac83.zip |
Version bump.
(Portage version: 2.1.10.46/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/zile/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/zile/zile-2.4.5.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/app-editors/zile/ChangeLog b/app-editors/zile/ChangeLog index 6aa95d5c0af4..08c79e3e14bd 100644 --- a/app-editors/zile/ChangeLog +++ b/app-editors/zile/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/zile # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.163 2012/02/14 21:47:08 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/ChangeLog,v 1.164 2012/02/15 20:40:56 ulm Exp $ + +*zile-2.4.5 (15 Feb 2012) + + 15 Feb 2012; Ulrich Müller <ulm@gentoo.org> +zile-2.4.5.ebuild: + Version bump. 14 Feb 2012; Brent Baude <ranger@gentoo.org> zile-2.4.2.ebuild: Marking zile-2.4.2 ppc for bug 391699 diff --git a/app-editors/zile/zile-2.4.5.ebuild b/app-editors/zile/zile-2.4.5.ebuild new file mode 100644 index 000000000000..1b5118623c94 --- /dev/null +++ b/app-editors/zile/zile-2.4.5.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.5.ebuild,v 1.1 2012/02/15 20:40:56 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 +} |