Date: Fri, 3 Mar 2017 19:43:03 +0000 (UTC) From: Sevan Janiyan <sevan@FreeBSD.org> To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r50032 - head/en_US.ISO8859-1/books/porters-handbook/special Message-ID: <201703031943.v23Jh3gU046969@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sevan Date: Fri Mar 3 19:43:03 2017 New Revision: 50032 URL: https://svnweb.freebsd.org/changeset/doc/50032 Log: PR: 215650 Submitted by: Olivier Duchateau <olivierd@> Reviewed by: swills bjk Approved by: wblock (mentor) Differential Revision: https://reviews.freebsd.org/D9039 Modified: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Fri Mar 3 19:28:05 2017 (r50031) +++ head/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml Fri Mar 3 19:43:03 2017 (r50032) @@ -2854,6 +2854,63 @@ USE_QT4= moc_build qmake_build rcc_build </sect2> </sect1> + <sect1 xml:id="using-lxqt"> + <title>Using LXQt</title> + + <para>Applications depending on LXQt should set + <literal>USES+= lxqt</literal> and set <varname>USE_LXQT</varname> + to the list of required components from the table below</para> + + <table frame="none" xml:id="using-lxqt-components"> + <title>Available LXQt Components</title> + + <tgroup cols="2"> + <thead> + <row> + <entry>Name</entry> + <entry>Description</entry> + </row> + </thead> + + <tbody> + <row> + <entry><literal>buildtools</literal></entry> + <entry>Helpers for additional CMake modules</entry> + </row> + + <row> + <entry><literal>libfmqt</literal></entry> + <entry>Libfm Qt bindings</entry> + </row> + + <row> + <entry><literal>lxqt</literal></entry> + <entry>LXQt core library</entry> + </row> + + <row> + <entry><literal>qtxdg</literal></entry> + <entry>Qt implementation of freedesktop.org + XDG specifications</entry> + </row> + </tbody> + </tgroup> + </table> + + <example xml:id="lxqt-components-example"> + <title><literal>USE_LXQT</literal> Example</title> + + <para>This is a simple example, + <literal>USE_LXQT</literal> adds a dependency on + LXQt libraries. Required LXQt components and + other dependencies can be determined from the + configure log.</para> + <programlisting>USES= cmake:outsource lxqt tar:xz +USE_QT5= buildtools_build qmake_build core dbus widgets +USE_LXQT= buildtools libfmqt</programlisting> + </example> + </sect1> + <sect1 xml:id="using-java"> <title>Using Java</title>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703031943.v23Jh3gU046969>