From owner-svn-doc-head@FreeBSD.ORG Mon Feb 3 15:30:15 2014 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 ESMTPS id CE32B585; Mon, 3 Feb 2014 15:30:15 +0000 (UTC) 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 B96501396; Mon, 3 Feb 2014 15:30:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s13FUFCV034901; Mon, 3 Feb 2014 15:30:15 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s13FUFD2034899; Mon, 3 Feb 2014 15:30:15 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201402031530.s13FUFD2034899@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 3 Feb 2014 15:30:15 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r43733 - 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.17 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: Mon, 03 Feb 2014 15:30:15 -0000 Author: mat (ports committer) Date: Mon Feb 3 15:30:15 2014 New Revision: 43733 URL: http://svnweb.freebsd.org/changeset/doc/43733 Log: Try and complete the missing USES that exist. Sponsored by: Absolight 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 Mon Feb 3 09:09:52 2014 (r43732) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Mon Feb 3 15:30:15 2014 (r43733) @@ -5854,6 +5854,36 @@ IGNORE= may not be redistributed because + + Variables the Users can define for + <command>cmake</command> builds + + + + + Variable + Means + + + + + + CMAKE_VERBOSE + Enable verbose build output. Default not set, + unless BATCH or + PACKAGE_BUILDING are set. + + + + CMAKE_NOCOLOR + Disables colour build output. Default not set, + unless BATCH or + PACKAGE_BUILDING are set. + + + +
+ CMake supports the following build profiles: Debug, Release, Modified: head/en_US.ISO8859-1/books/porters-handbook/uses.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/uses.xml Mon Feb 3 09:09:52 2014 (r43732) +++ head/en_US.ISO8859-1/books/porters-handbook/uses.xml Mon Feb 3 15:30:15 2014 (r43733) @@ -57,11 +57,14 @@ cmake - (none), outsource + (none), outsource, + run Uses CMake for configuring and building. With the outsource argument, an - out-of-source build will be performed. For more information see + out-of-source build will be performed. With the + run argument, a run-time dependency is + registered. For more information see . @@ -132,16 +135,6 @@ - desthack - - (none) - - Changes the behavior of GNU configure to properly support - DESTDIR in case the original software does - not. - - - desktop-file-utils (none) @@ -156,9 +149,19 @@ + desthack + + (none) + + Changes the behavior of GNU configure to properly support + DESTDIR in case the original software does + not. + + + display - (none), ARGS + (none), ARGS Set up a virtual display environment. If the environment variable DISPLAY is not set, then @@ -241,15 +244,15 @@ gettext - (none), lib, build, - run + (none), lib (default), + build, run Uses devel/gettext. By default, with no arguments or with the lib - argument, implies gettext with build-time and - run-time dependencies. build implies a - build-time dependency, and run implies a - run-time dependency. + argument, implies a library dependency on + libintl.so. build and + run implies, respectively a build-time and a + run-time dependency on xgettext. @@ -258,7 +261,9 @@ (none) Uses devel/gmake as a - build-time dependency. + build-time dependency and sets up the environment to use + gmake as the default make + for the build. @@ -283,10 +288,14 @@ imake - (none) + (none), env, + notall Uses devel/imake as - build-time dependency. + build-time dependency. If the env argument is + given, only setup the environment and do not define any target. + If the notall argument is given does not pass + -a to xmkmf. @@ -335,6 +344,15 @@ + libtool + + (none) + + Patches libtool scripts. This should be + added to all ports that use libtool. + + + lua (none), XY+, XY, @@ -353,11 +371,11 @@ (none) - Uses devel/open-motif as a - library dependency. End users can set + Uses x11-toolkits/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. + x11-toolkits/lesstif instead of + x11-toolkits/open-motif. @@ -456,10 +474,29 @@ + pgsql + + (none), X.Y, X.Y+, + X.Y- + + + Provide support for PostgreSQL. Maintainer can set version + required. Minimum and maximum versions can be specified; e.g., + 9.0-, 8.4+. + + Add PostgreSQL component dependency, using + WANT_PGSQL=component[:target]. e.g., + WANT_PGSQL=server:configure pltcl plperl For + the full list use make -V + _USE_PGSQL_DEP. + + + + pkgconfig - (none), build, run, - both + (none), build (default), + run, both Uses devel/pkgconf. With no arguments or with the build argument, it @@ -499,7 +536,8 @@ qmake - (none), norecursive + (none), norecursive, + outsource Uses QMake for configuring. For more information see . @@ -508,11 +546,22 @@ readline - (none), port + (none), port Uses readline as library dependency, and sets CPPFLAGS and - LDFLAGS as necessary. + LDFLAGS as necessary. If the + port argument is used, force the use of + devel/readline + + + + scons + + (none) + + Provide support for the use of + devel/scons @@ -662,6 +711,39 @@ + uniquefiles + + (none), dirs + + + Make files or directories 'unique', by adding a prefix or suffix. + If the dirs argument is used, the port needs a + prefix (a only a prefix) based on UNIQUE_PREFIX + for standard directories DOCSDIR, + EXAMPLESDIR, DATADIR, + WWWDIR, ETCDIR. The + following variables are available for ports: + + UNIQUE_PREFIX: The prefix to + be used for directories and files. Default: + ${PKGNAMEPREFIX}. + + UNIQUE_PREFIX_FILES: A list + of files that need to be prefixed. Default: + empty. + + UNIQUE_SUFFIX: The suffix to + be used for files. Default: + ${PKGNAMESUFFIX}. + + UNIQUE_SUFFIX_FILES: A list + of files that need to be suffixed. Default: + empty. + + + + + webplugin (none), ARGS