Date: Sun, 27 Sep 2015 12:10:17 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398040 - head/editors/neovim Message-ID: <201509271210.t8RCAHhW059299@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509271210.t8RCAHhW059299>