Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 2016 16:00:38 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r409617 - head/irc/weechat
Message-ID:  <201602261600.u1QG0cd9020184@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri Feb 26 16:00:38 2016
New Revision: 409617
URL: https://svnweb.freebsd.org/changeset/ports/409617

Log:
  Readd removed ${PORTSDIR} in dependency chain too early there are still fixes
  needed in bsd.ports.mk to allow removing them entirely

Modified:
  head/irc/weechat/Makefile

Modified: head/irc/weechat/Makefile
==============================================================================
--- head/irc/weechat/Makefile	Fri Feb 26 15:52:16 2016	(r409616)
+++ head/irc/weechat/Makefile	Fri Feb 26 16:00:38 2016	(r409617)
@@ -18,8 +18,8 @@ USES=		cmake iconv localbase ncurses tar
 CMAKE_ARGS+=	-DENABLE_GUILE=no \
 		-DICONV_INCLUDE_PATH=${ICONV_INCLUDE_PATH}
 
-LIB_DEPENDS+=	libcurl.so:ftp/curl \
-		libgcrypt.so:security/libgcrypt
+LIB_DEPENDS+=	libcurl.so:${PORTSDIR}/ftp/curl \
+		libgcrypt.so:${PORTSDIR}/security/libgcrypt
 
 OPTIONS_DEFINE=	RUBY PYTHON PERL TCL LUA JAVASCRIPT CHARSET BACKTRACE ASPELL \
 		GNUTLS CA_BUNDLE NLS ICON MANPAGES DOCS
@@ -37,12 +37,12 @@ PYTHON_DESC=	Python scripting language s
 RUBY_DESC=	Ruby scripting language support
 
 ASPELL_CMAKE_OFF=	-DENABLE_ASPELL=no
-ASPELL_LIB_DEPENDS=	libaspell.so:textproc/aspell
+ASPELL_LIB_DEPENDS=	libaspell.so:${PORTSDIR}/textproc/aspell
 
 BACKTRACE_USES=		execinfo
 
 CA_BUNDLE_CMAKE_ON=	-DCA_FILE=${LOCALBASE}/share/certs/ca-root-nss.crt
-CA_BUNDLE_RUN_DEPENDS=	${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss
+CA_BUNDLE_RUN_DEPENDS=	${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss
 
 CHARSET_CMAKE_OFF=	-DENABLE_CHARSET=no
 
@@ -50,11 +50,11 @@ DOCS_CMAKE_ON=		-DENABLE_DOC=yes
 
 JAVASCRIPT_CMAKE_OFF=	-DENABLE_JAVASCRIPT=no
 JAVASCRIPT_CMAKE_ON=	-DENABLE_JAVASCRIPT=yes
-JAVASCRIPT_LIB_DEPENDS=	libv8.so:lang/v8
+JAVASCRIPT_LIB_DEPENDS=	libv8.so:${PORTSDIR}/lang/v8
 
 GNUTLS_CMAKE_OFF=	-DENABLE_GNUTLS=no
 GNUTLS_USES=		pkgconfig
-GNUTLS_LIB_DEPENDS=	libgnutls.so.28:security/gnutls
+GNUTLS_LIB_DEPENDS=	libgnutls.so.28:${PORTSDIR}/security/gnutls
 
 LUA_CMAKE_OFF=		-DENABLE_LUA=no
 LUA_CMAKE_ON=		-DBSD_LUA_LIBDIR=${LUA_LIBDIR} \
@@ -89,10 +89,10 @@ TCL_USES=		tcl:85+
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MDOCS} || ${PORT_OPTIONS:MMANPAGES}
-BUILD_DEPENDS+=	xsltproc:textproc/libxslt \
-		docbook-xsl>=0:textproc/docbook-xsl \
-		asciidoc:textproc/asciidoc \
-		source-highlight>=3.1.5:textproc/source-highlight
+BUILD_DEPENDS+=	xsltproc:${PORTSDIR}/textproc/libxslt \
+		docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl \
+		asciidoc:${PORTSDIR}/textproc/asciidoc \
+		source-highlight>=3.1.5:${PORTSDIR}/textproc/source-highlight
 .endif
 
 post-patch:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602261600.u1QG0cd9020184>