diff options
author | Ulrich Müller <ulm@gentoo.org> | 2013-01-04 18:33:17 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2013-01-04 18:33:17 +0000 |
commit | 374e3b8665f4590f340d7836684a89c31b511ed3 (patch) | |
tree | 44fc24a25605e5fac821f7995b1f84aaf4185765 /app-editors/zile/zile-2.4.9.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-374e3b8665f4590f340d7836684a89c31b511ed3.tar.gz gentoo-2-374e3b8665f4590f340d7836684a89c31b511ed3.tar.bz2 gentoo-2-374e3b8665f4590f340d7836684a89c31b511ed3.zip |
Version bump.
(Portage version: 2.1.11.38/cvs/Linux x86_64, signed Manifest commit with key E7BE08CA7DC6EA25)
Diffstat (limited to 'app-editors/zile/zile-2.4.9.ebuild')
-rw-r--r-- | app-editors/zile/zile-2.4.9.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-editors/zile/zile-2.4.9.ebuild b/app-editors/zile/zile-2.4.9.ebuild new file mode 100644 index 000000000000..445b7d48d9ff --- /dev/null +++ b/app-editors/zile/zile-2.4.9.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zile/zile-2.4.9.ebuild,v 1.1 2013/01/04 18:33:17 ulm Exp $ + +EAPI=5 + +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} + test? ( dev-lang/perl )" + +src_configure() { + econf \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + $(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 +} |