PR: 215650

Submitted by:	Olivier Duchateau <olivierd@>
Reviewed by:	swills bjk
Approved by:	wblock (mentor)
Differential Revision:	https://reviews.freebsd.org/D9039
This commit is contained in:
Sevan Janiyan 2017-03-03 19:43:03 +00:00
parent c9fac91cbc
commit 10b24a948d
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=50032

View file

@ -2854,6 +2854,63 @@ USE_QT4= moc_build qmake_build rcc_build uic_build</programlisting>
</sect2> </sect2>
</sect1> </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"> <sect1 xml:id="using-java">
<title>Using Java</title> <title>Using Java</title>