diff options
author | marino <marino@FreeBSD.org> | 2015-11-11 17:00:45 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-11-11 17:00:45 +0800 |
commit | f87338f3b7539f35a645cd7150045ab8c90eba2c (patch) | |
tree | 580426df03605523448c15e7d61ffb8e3edc1109 /lang | |
parent | c6a0f6b52e4ab6facf2c97a8de87c115d76956d9 (diff) | |
download | freebsd-ports-gnome-f87338f3b7539f35a645cd7150045ab8c90eba2c.tar.gz freebsd-ports-gnome-f87338f3b7539f35a645cd7150045ab8c90eba2c.tar.zst freebsd-ports-gnome-f87338f3b7539f35a645cd7150045ab8c90eba2c.zip |
lang/onyz: Convert to USES=libedit
The previous depends declaration for libedit was incorrect. It had a
".so" prefix instead of ".so.0" prefix meaning that the requirement
would have been satisfied by system libedit. For this reason, converting
to USES=libedit requires a bump.
Approved by: infrastructure modernization
Diffstat (limited to 'lang')
-rw-r--r-- | lang/onyx/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lang/onyx/Makefile b/lang/onyx/Makefile index 901127b1137a..a47bef33bd5c 100644 --- a/lang/onyx/Makefile +++ b/lang/onyx/Makefile @@ -3,7 +3,7 @@ PORTNAME= onyx PORTVERSION= 5.1.2 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= lang MASTER_SITES= http://www.canonware.com/download/onyx/ @@ -13,10 +13,9 @@ COMMENT= Embeddable stack-based threaded interpreted language LICENSE= BSD2CLAUSE BUILD_DEPENDS= cook:${PORTSDIR}/devel/cook -LIB_DEPENDS= libedit.so:${PORTSDIR}/devel/libedit \ - libpcre.so:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre -USES= tar:bzip2 shebangfix +USES= libedit shebangfix tar:bzip2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libedit-prefix=${LOCALBASE} \ --with-pcre-prefix=${LOCALBASE} |