From owner-svn-doc-all@freebsd.org Fri Jun 1 13:52:41 2018 Return-Path: Delivered-To: svn-doc-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E47CFDB35E; Fri, 1 Jun 2018 13:52:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 10C647CD12; Fri, 1 Jun 2018 13:52:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E6C7729A5F; Fri, 1 Jun 2018 13:52:40 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w51DqeG9032338; Fri, 1 Jun 2018 13:52:40 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w51Dqef0032335; Fri, 1 Jun 2018 13:52:40 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201806011352.w51Dqef0032335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 1 Jun 2018 13:52:40 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r51756 - in head/en_US.ISO8859-1/books/porters-handbook: makefiles special uses X-SVN-Group: doc-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/en_US.ISO8859-1/books/porters-handbook: makefiles special uses X-SVN-Commit-Revision: 51756 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Jun 2018 13:52:41 -0000 Author: tobik (ports committer) Date: Fri Jun 1 13:52:40 2018 New Revision: 51756 URL: https://svnweb.freebsd.org/changeset/doc/51756 Log: Fix broken 'uses-values' links in the Porter's Handbook The USES chapter sets an xml:id on its title tag but this doesn't seem to generate an anchor. As a consequence there currently are several 'uses-values' xrefs that point to nowhere. This is only really noticeable in the single page HTML version (book.html) of the handbook. PR: 227123 Reported by: 0mp Approved by: mat Differential Revision: https://reviews.freebsd.org/D15642 Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri Jun 1 10:35:58 2018 (r51755) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri Jun 1 13:52:40 2018 (r51756) @@ -3209,7 +3209,7 @@ EXTRACT_SUFX= .tar.gzip USES=lha or USES=zip automatically set EXTRACT_SUFX to the most common archives extensions as necessary, see for more details. If neither of + linkend="uses"/> for more details. If neither of these are set then EXTRACT_SUFX defaults to .tar.gz. @@ -5646,7 +5646,7 @@ RUN_DEPENDS= ${MY_DEPENDS} and cannot be made to work using USES=tar, USES=lha or USES=zip described in . + linkend="uses"/>. @@ -5679,7 +5679,7 @@ RUN_DEPENDS= ${MY_DEPENDS} USES= feature[:arguments] For the complete list of values, please see - . + . USES cannot be assigned after Modified: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Fri Jun 1 10:35:58 2018 (r51755) +++ head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Fri Jun 1 13:52:40 2018 (r51756) @@ -4227,7 +4227,7 @@ USE_PYTHON= autoplist distutils See the USES=tcl and USES=tk of - for a full description of those + for a full description of those variables. A complete list of those variables is available in /usr/ports/Mk/Uses/tcl.mk. @@ -5015,7 +5015,7 @@ PLIST_SUB+= VERSION="${VER_STR}" If a specific version of Lua is needed, instructions on how to select it are given in the USES=lua part - of . + of . Modified: head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml Fri Jun 1 10:35:58 2018 (r51755) +++ head/en_US.ISO8859-1/books/porters-handbook/uses/chapter.xml Fri Jun 1 13:52:40 2018 (r51756) @@ -26,8 +26,7 @@ - Using <varname>USES</varname> - Macros + Using <varname>USES</varname> Macros An Introduction to <varname>USES</varname>