From owner-svn-doc-all@FreeBSD.ORG Sun Nov 10 21:56:12 2013 Return-Path: Delivered-To: svn-doc-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 421E2BF7; Sun, 10 Nov 2013 21:56:12 +0000 (UTC) (envelope-from eadler@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 15075249F; Sun, 10 Nov 2013 21:56:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAALuBqI054601; Sun, 10 Nov 2013 21:56:11 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAALuBs6054600; Sun, 10 Nov 2013 21:56:11 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201311102156.rAALuBs6054600@svn.freebsd.org> From: Eitan Adler Date: Sun, 10 Nov 2013 21:56:11 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r43155 - 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-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 10 Nov 2013 21:56:12 -0000 Author: eadler Date: Sun Nov 10 21:56:11 2013 New Revision: 43155 URL: http://svnweb.freebsd.org/changeset/doc/43155 Log: Remove old method of creating pkg-plist. These methods will not work with staging support as nothing will get installed to the host system. 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 Sun Nov 10 20:14:07 2013 (r43154) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Sun Nov 10 21:56:11 2013 (r43155) @@ -10293,10 +10293,6 @@ etc/orbit.conf.sample based upon the version of dependent software used (e.g., ports which generate docs with Javadoc). - - Note that the makeplist target can - be used for ports that support staging to display the package - list. @@ -10318,32 +10314,6 @@ etc/orbit.conf.sample libraries installed by the port should be listed as specified in the shared libraries section. - - Alternatively, use the plist script in - /usr/ports/Tools/scripts/ to build the - package list automatically. - - The first step is the same as above: take the first three - lines, that is, mkdir, - mtree and make depends. - Then build and install the port: - - &prompt.root; make install PREFIX=/var/tmp/`make -V PORTNAME` - - And let plist create the - pkg-plist file: - - &prompt.root; /usr/ports/Tools/scripts/plist -Md -m `make -V MTREE_FILE` /var/tmp/`make -V PORTNAME` > pkg-plist - - The packing list still has to be tidied up by hand as - stated above. - - Another tool that might be used to create an initial - pkg-plist is - ports-mgmt/genplist. As - with any automated tool, the resulting - pkg-plist should be checked and manually - edited as needed.