diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-08-26 15:15:02 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-08-26 15:15:02 +0000 |
commit | afc8439879b7798d8dc4e2b2236439530939f80e (patch) | |
tree | cd94765c3897b65e421be6b28ad2015dfcd1cce1 /app-editors | |
parent | bumped EAPI to 5 to help with dev-lang/perl upgrade (diff) | |
download | gentoo-2-afc8439879b7798d8dc4e2b2236439530939f80e.tar.gz gentoo-2-afc8439879b7798d8dc4e2b2236439530939f80e.tar.bz2 gentoo-2-afc8439879b7798d8dc4e2b2236439530939f80e.zip |
Version bump.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4F064CA3)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vile/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/vile/vile-9.8n.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/app-editors/vile/ChangeLog b/app-editors/vile/ChangeLog index 215a8baedfb8..fc700608d68e 100644 --- a/app-editors/vile/ChangeLog +++ b/app-editors/vile/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/vile # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.55 2014/01/25 20:56:56 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.56 2014/08/26 15:15:02 radhermit Exp $ + +*vile-9.8n (26 Aug 2014) + + 26 Aug 2014; Tim Harder <radhermit@gentoo.org> +vile-9.8n.ebuild: + Version bump. 25 Jan 2014; Tim Harder <radhermit@gentoo.org> -vile-9.8g.ebuild, -vile-9.8h.ebuild: diff --git a/app-editors/vile/vile-9.8n.ebuild b/app-editors/vile/vile-9.8n.ebuild new file mode 100644 index 000000000000..0728320ca20f --- /dev/null +++ b/app-editors/vile/vile-9.8n.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.8n.ebuild,v 1.1 2014/08/26 15:15:02 radhermit Exp $ + +EAPI="5" + +DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone" +HOMEPAGE="http://invisible-island.net/vile/" +SRC_URI="ftp://invisible-island.net/vile/current/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="perl" + +RDEPEND=">=sys-libs/ncurses-5.2 + perl? ( dev-lang/perl )" +DEPEND="${RDEPEND} + sys-devel/flex + app-admin/eselect-vi" + +src_configure() { + econf \ + --with-ncurses \ + $(use_with perl ) +} + +src_install() { + emake DESTDIR="${D}" INSTALL_OPTS="" install + dodoc CHANGES* README doc/*.doc + dohtml doc/*.html +} + +pkg_postinst() { + einfo "Updating ${EPREFIX}/usr/bin/vi symlink" + eselect vi update --if-unset +} + +pkg_postrm() { + einfo "Updating ${EPREFIX}/usr/bin/vi symlink" + eselect vi update --if-unset +} |