diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2015-07-18 01:02:13 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2015-07-18 01:02:13 +0800 |
commit | aff21f3f5b38fc3b49e3fbfdccd1d5dd60bdf44d (patch) | |
tree | aea7764d61dc3624f9f83a4d74d2f909e1fc8801 /lang/lua53 | |
parent | f3bfea3369e0e2dd4895297977bfee11d1e9b2c6 (diff) | |
download | freebsd-ports-gnome-aff21f3f5b38fc3b49e3fbfdccd1d5dd60bdf44d.tar.gz freebsd-ports-gnome-aff21f3f5b38fc3b49e3fbfdccd1d5dd60bdf44d.tar.zst freebsd-ports-gnome-aff21f3f5b38fc3b49e3fbfdccd1d5dd60bdf44d.zip |
lang/lua53: fix dependencies
Prevent /usr/lib/libedit.so from being used over
/usr/local/lib/libedit.so.0 from devel/libedit
Note: libedit should be made into a USES
Reported by: sunpoet
Pointy hat to: myself (pgollucci)
Diffstat (limited to 'lang/lua53')
-rw-r--r-- | lang/lua53/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/lua53/Makefile b/lang/lua53/Makefile index 48198d2c31be..5b27ec28d36f 100644 --- a/lang/lua53/Makefile +++ b/lang/lua53/Makefile @@ -3,6 +3,7 @@ PORTNAME= lua PORTVERSION= 5.3.1 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= http://www.lua.org/ftp/ PKGNAMESUFFIX= 53 @@ -13,7 +14,7 @@ COMMENT= Small, compilable scripting language providing easy access to C code LICENSE= MIT LUA_VER= 5.3 -LIB_DEPENDS= libedit.so:${PORTSDIR}/devel/libedit +LIB_DEPENDS= libedit.so.0:${PORTSDIR}/devel/libedit USE_LDCONFIG= yes # Overriding __MAKE_CONF makes sure that we don't re-parse |