diff options
author | Tim Harder <radhermit@gentoo.org> | 2016-08-20 19:29:26 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2016-08-20 19:32:29 -0400 |
commit | 68b0ede99056d5af3aae2beae4e1660e737dd844 (patch) | |
tree | 31c90b5e8e37da641f2392185cc75b2d1e2088c7 /app-editors/vile/vile-9.8r.ebuild | |
parent | dev-python/botocore: remove version 1.4.39 (diff) | |
download | gentoo-68b0ede99056d5af3aae2beae4e1660e737dd844.tar.gz gentoo-68b0ede99056d5af3aae2beae4e1660e737dd844.tar.bz2 gentoo-68b0ede99056d5af3aae2beae4e1660e737dd844.zip |
app-editors/vile: version bump to 9.8r
Diffstat (limited to 'app-editors/vile/vile-9.8r.ebuild')
-rw-r--r-- | app-editors/vile/vile-9.8r.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app-editors/vile/vile-9.8r.ebuild b/app-editors/vile/vile-9.8r.ebuild new file mode 100644 index 000000000000..00b364f34510 --- /dev/null +++ b/app-editors/vile/vile-9.8r.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +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:0= + perl? ( dev-lang/perl )" +DEPEND="${RDEPEND} + sys-devel/flex + app-eselect/eselect-vi" + +src_configure() { + econf \ + --with-ncurses \ + $(use_with perl ) +} + +src_install() { + emake DESTDIR="${D}" INSTALL_OPT_S="" install + dodoc CHANGES* README doc/*.doc + docinto html + dodoc 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 +} |