From owner-svn-doc-head@FreeBSD.ORG Fri Nov 8 20:16:47 2013 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DE4B49D2; Fri, 8 Nov 2013 20:16:47 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C9C452E93; Fri, 8 Nov 2013 20:16:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA8KGlHu034402; Fri, 8 Nov 2013 20:16:47 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA8KGlEo034401; Fri, 8 Nov 2013 20:16:47 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201311082016.rA8KGlEo034401@svn.freebsd.org> From: Rene Ladan Date: Fri, 8 Nov 2013 20:16:47 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r43146 - head/en_US.ISO8859-1/books/porters-handbook X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Nov 2013 20:16:47 -0000 Author: rene Date: Fri Nov 8 20:16:47 2013 New Revision: 43146 URL: http://svnweb.freebsd.org/changeset/doc/43146 Log: - Library dependencies are first checked during the build phase, not during the extract phase - Update all examples on LIB_DEPENDS to the new syntax [1] Requested by: bdrewery [1] Approved by: remko (mentor) Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.xml Fri Nov 8 20:13:39 2013 (r43145) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Fri Nov 8 20:16:47 2013 (r43146) @@ -3590,7 +3590,7 @@ ALWAYS_KEEP_DISTFILES= yes it is not found. The dependency is checked twice, once from within the - extract target and then from within + build target and then from within the install target. Also, the name of the dependency is put into the package so that &man.pkg.add.1; will automatically install it if it is not @@ -3988,7 +3988,7 @@ ALWAYS_KEEP_DISTFILES= yes .include <bsd.port.pre.mk> .if exists(${LOCALBASE}/bin/foo) -LIB_DEPENDS= bar:${PORTSDIR}/foo/bar +LIB_DEPENDS= libbar.so:${PORTSDIR}/foo/bar .endif @@ -4011,7 +4011,7 @@ BAR_DESC= Bar support .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MBAR} -LIB_DEPENDS= bar:${PORTSDIR}/foo/bar +LIB_DEPENDS= libbar.so:${PORTSDIR}/foo/bar .endif @@ -4439,7 +4439,7 @@ CONFIGURE_ARGS+= --without-postgres .endif .if ${PORT_OPTIONS:MICU} -LIB_DEPENDS+= icuuc:${PORTSDIR}/devel/icu +LIB_DEPENDS+= libicuuc.so:${PORTSDIR}/devel/icu .endif .if ! ${PORT_OPTIONS:MEXAMPLES}