svn commit: r398040 - head/editors/neovim
Mathieu Arnold
mat at FreeBSD.org
Sun Sep 27 12:10:17 UTC 2015
Author: mat
Date: Sun Sep 27 12:10:16 2015
New Revision: 398040
URL: https://svnweb.freebsd.org/changeset/ports/398040
Log:
fix runtime, pkg registers a dependency on libluajit but no runtime
dependency, and pkg autoremove will render this unusable.
Sponsored by: Absolight
Modified:
head/editors/neovim/Makefile
Modified: head/editors/neovim/Makefile
==============================================================================
--- head/editors/neovim/Makefile Sun Sep 27 11:47:11 2015 (r398039)
+++ head/editors/neovim/Makefile Sun Sep 27 12:10:16 2015 (r398040)
@@ -3,6 +3,7 @@
PORTNAME= neovim
PORTVERSION= 0.0.0.201507060407
+PORTREVISION= 1
CATEGORIES= editors
MASTER_SITES= GH
@@ -11,13 +12,13 @@ COMMENT= Next generation Vim
LICENSE= APACHE20
-BUILD_DEPENDS= luajit:${PORTSDIR}/lang/luajit \
- ${LUA_MODSHAREDIR}/MessagePack.lua:${PORTSDIR}/devel/lua-MessagePack \
+BUILD_DEPENDS= ${LUA_MODSHAREDIR}/MessagePack.lua:${PORTSDIR}/devel/lua-MessagePack \
${LUA_MODLIBDIR}/bit.so:${PORTSDIR}/devel/lua-bitop \
${LUA_MODLIBDIR}/lpeg.so:${PORTSDIR}/devel/lua-lpeg
LIB_DEPENDS= libunibilium.so:${PORTSDIR}/devel/unibilium \
libvterm.so:${PORTSDIR}/devel/libvterm \
libtermkey.so:${PORTSDIR}/devel/libtermkey \
+ libluajit-5.1.so:${PORTSDIR}/lang/luajit \
libuv.so:${PORTSDIR}/devel/libuv \
libmsgpack.so:${PORTSDIR}/devel/msgpack
More information about the svn-ports-head
mailing list