Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Oct 2016 16:18:56 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423078 - head/editors/vim
Message-ID:  <201610011618.u91GIuYN077974@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adamw
Date: Sat Oct  1 16:18:56 2016
New Revision: 423078
URL: https://svnweb.freebsd.org/changeset/ports/423078

Log:
  - Don't set nocompatible in the gvimrc [1], bump PORTREVISION
    See also https://groups.google.com/forum/#!topic/vim_use/66crU745cFc
  - Mark as MAKE_JOBS_UNSAFE (thanks to Mat for the log):
  make[2]: "/wrkdirs/usr/ports/editors/vim/work/vim-8.0.0019/src/po/Makefile" line 4: Could not find ../auto/config.mk
  make[2]: Fatal errors encountered -- cannot continue
  
  PR:		197214 [1]
  Submitted by:	jjuanino gmail

Modified:
  head/editors/vim/Makefile

Modified: head/editors/vim/Makefile
==============================================================================
--- head/editors/vim/Makefile	Sat Oct  1 16:11:14 2016	(r423077)
+++ head/editors/vim/Makefile	Sat Oct  1 16:18:56 2016	(r423078)
@@ -4,6 +4,7 @@
 PORTNAME=	vim
 PORTVERSION=	8.0.0019
 DISTVERSIONPREFIX=	v
+PORTREVISION=	1
 CATEGORIES?=	editors
 
 MAINTAINER?=	adamw@FreeBSD.org
@@ -38,6 +39,7 @@ MAKE_ARGS+=	VIMRUNTIMEDIR=${PREFIX}/shar
 MAKE_ARGS+=	CONF_OPT_MULTIBYTE=--enable-multibyte CONF_TERM_LIB=--with-tlib=termlib
 REINPLACE_ARGS=	-i ''
 USES=		cpe iconv ncurses pkgconfig shebangfix
+MAKE_JOBS_UNSAFE=	yes
 
 PLIST_SUB=	VIM_VER=${VIM_VER}
 PORTDATA=	${VIM_VER}
@@ -179,7 +181,7 @@ post-install:
 
 post-install-DEFAULT_VIMRC-on:
 	@${MKDIR} ${STAGEDIR}${ETCDIR}
-	${INSTALL_DATA} ${FILESDIR}/vimrc ${STAGEDIR}${ETCDIR}/gvimrc.sample
+	${SED} -e '/set nocompatible/d' ${FILESDIR}/vimrc > ${STAGEDIR}${ETCDIR}/gvimrc.sample
 	${INSTALL_DATA} ${FILESDIR}/vimrc ${STAGEDIR}${ETCDIR}/vimrc.sample
 
 post-install-NLS-off:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610011618.u91GIuYN077974>