radhermit 15/01/28 01:46:03 Modified: ChangeLog Added: vile-9.8o.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path 1.57 app-editors/vile/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?rev=1.57&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?rev=1.57&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?r1=1.56&r2=1.57 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- ChangeLog 26 Aug 2014 15:15:02 -0000 1.56 +++ ChangeLog 28 Jan 2015 01:46:03 -0000 1.57 @@ -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.56 2014/08/26 15:15:02 radhermit Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.57 2015/01/28 01:46:03 radhermit Exp $ + +*vile-9.8o (28 Jan 2015) + + 28 Jan 2015; Tim Harder <radher...@gentoo.org> +vile-9.8o.ebuild: + Version bump. *vile-9.8n (26 Aug 2014) 1.1 app-editors/vile/vile-9.8o.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.8o.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.8o.ebuild?rev=1.1&content-type=text/plain Index: vile-9.8o.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.8o.ebuild,v 1.1 2015/01/28 01:46:03 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_OPT_S="" 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 }