Date: Wed, 24 Apr 2013 16:53:11 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r41488 - head/en_US.ISO8859-1/books/porters-handbook Message-ID: <201304241653.r3OGrBM8022297@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eadler Date: Wed Apr 24 16:53:10 2013 New Revision: 41488 URL: http://svnweb.freebsd.org/changeset/doc/41488 Log: Document the pkgconfig USES PR: docs/178073 Submitted by: jgh Reviewed by: bjk Approved by: bcr 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 Apr 24 16:11:15 2013 (r41487) +++ head/en_US.ISO8859-1/books/porters-handbook/book.xml Wed Apr 24 16:53:10 2013 (r41488) @@ -5775,52 +5775,6 @@ CMAKE_SOURCE_PATH= ${WRKSRC}/subp </sect2> </sect1> - <sect1 id="using-pkg-config"> - <title>Using <literal>pkg-config</literal></title> - - <para>If your ports requires <literal>pkg-config</literal>, - just set <makevar>USE_PKGCONFIG</makevar> to the following - possible values:</para> - <table frame="none"> - <title>Values for <makevar>USE_PKGCONFIG</makevar></title> - - <tgroup cols="2"> - <thead> - <row> - <entry>Definition</entry> - <entry>Description</entry> - </row> - </thead> - - <tbody> - <row> - <entry><makevar>USE_PKGCONFIG= yes</makevar></entry> - <entry>The ports uses pkg-config only at build - time</entry> - </row> - - <row> - <entry><makevar>USE_PKGCONFIG= build</makevar></entry> - <entry>The ports uses pkg-config only at build - time</entry> - </row> - - <row> - <entry><makevar>USE_PKGCONFIG= run</makevar></entry> - <entry>The ports uses pkg-config only at run - time</entry> - </row> - - <row> - <entry><makevar>USE_PKGCONFIG= both</makevar></entry> - <entry>The ports uses pkg-config both at build and run - time</entry> - </row> - </tbody> - </tgroup> - </table> - </sect1> - <sect1 id="using-gettext"> <title>Using GNU <literal>gettext</literal></title> Modified: head/en_US.ISO8859-1/books/porters-handbook/uses.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/uses.xml Wed Apr 24 16:11:15 2013 (r41487) +++ head/en_US.ISO8859-1/books/porters-handbook/uses.xml Wed Apr 24 16:53:10 2013 (r41488) @@ -72,6 +72,21 @@ </row> <row> + <entry><literal>pkgconfig</literal></entry> + + <entry>none, <literal>build</literal>, <literal>run</literal>, + <literal>both</literal></entry> + + <entry>Implies that the port uses <filename + role="package">devel/pkgconf</filename> in one way or another. + With no arguments or with the <literal>build</literal> + argument, it implies <command>pkg-config</command> as a build-time + dependency; <literal>run</literal> implies a run-time dependency; + and <literal>both</literal> implies both run-time and build-time + dependencies.</entry> +</row> + +<row> <entry><literal>qmail</literal></entry> <entry>none, <literal>build</literal>, <literal>run</literal>, <literal>both</literal>, <literal>vars</literal></entry>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304241653.r3OGrBM8022297>