From owner-svn-doc-head@FreeBSD.ORG Wed Aug 28 15:03:53 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 BEE596C0; Wed, 28 Aug 2013 15:03:53 +0000 (UTC) (envelope-from brd@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 AA8332E86; Wed, 28 Aug 2013 15:03:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7SF3rkB082771; Wed, 28 Aug 2013 15:03:53 GMT (envelope-from brd@svn.freebsd.org) Received: (from brd@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7SF3rGL082766; Wed, 28 Aug 2013 15:03:53 GMT (envelope-from brd@svn.freebsd.org) Message-Id: <201308281503.r7SF3rGL082766@svn.freebsd.org> From: Brad Davis Date: Wed, 28 Aug 2013 15:03:53 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r42598 - 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: Wed, 28 Aug 2013 15:03:53 -0000 Author: brd Date: Wed Aug 28 15:03:52 2013 New Revision: 42598 URL: http://svnweb.freebsd.org/changeset/doc/42598 Log: - Add the following from bapt@ - Document new libdepends way - Add motif to the uses list - USE_DISPLAY is now USES=display Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml head/en_US.ISO8859-1/books/porters-handbook/uses.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/book.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/book.xml Wed Aug 28 14:44:02 2013 (r42597) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Wed Aug 28 15:03:52 2013 (r42598) @@ -3565,35 +3565,19 @@ ALWAYS_KEEP_DISTFILES= yes This variable specifies the shared libraries this port depends on. It is a list of - lib:dir:target + lib:dir tuples where lib is the name of the shared library, dir is the - directory in which to find it in case it is not available, - and target is the target to call - in that directory. For example, + directory in which to find it in case it is not available. + For example, - LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg + LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg will check for a shared jpeg library with any version, and descend into the graphics/jpeg subdirectory of your - ports tree to build and install it if it is not found. The - target part can be omitted if it - is equal to DEPENDS_TARGET (which - defaults to install). - - - The lib part is a regular - expression which is being looked up in the - ldconfig -r output. Values such as - intl.9 and - intl.[5-7] are allowed. The first - pattern, intl.9, will match only - version 9 of intl, while intl.[5-7], - will match any of: intl.5, - intl.6 or - intl.7. - + ports tree to build and install it if it is not found. + The dependency is checked twice, once from within the extract target and then from within @@ -6373,7 +6357,7 @@ USE_XORG= x11 xpm X server. The working DISPLAY is then passed to the build. - USE_DISPLAY= yes + USES= display Modified: head/en_US.ISO8859-1/books/porters-handbook/uses.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/uses.xml Wed Aug 28 14:44:02 2013 (r42597) +++ head/en_US.ISO8859-1/books/porters-handbook/uses.xml Wed Aug 28 15:03:52 2013 (r42598) @@ -121,6 +121,17 @@ + motif + (none) + Implies that the ports uses devel/open-motif as a library + dependency. End users can set WANT_LESSTIF + for the dependency to be on devel/lesstif instead of devel/open-motif. + + + ncurses (none), base, port