svn commit: r401230 - head/lang/onyx

John Marino marino at FreeBSD.org
Wed Nov 11 09:00:47 UTC 2015


Author: marino
Date: Wed Nov 11 09:00:45 2015
New Revision: 401230
URL: https://svnweb.freebsd.org/changeset/ports/401230

Log:
  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

Modified:
  head/lang/onyx/Makefile

Modified: head/lang/onyx/Makefile
==============================================================================
--- head/lang/onyx/Makefile	Wed Nov 11 08:53:08 2015	(r401229)
+++ head/lang/onyx/Makefile	Wed Nov 11 09:00:45 2015	(r401230)
@@ -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
 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}


More information about the svn-ports-all mailing list