|
Lines 2854-2859
Link Here
|
| 2854 |
</sect2> |
2854 |
</sect2> |
| 2855 |
</sect1> |
2855 |
</sect1> |
| 2856 |
|
2856 |
|
|
|
2857 |
<sect1 xml:id="using-lxqt"> |
| 2858 |
<title>Using LXQt</title> |
| 2859 |
|
| 2860 |
<para>If the application depends on LXQt, set |
| 2861 |
<literal>USES+= lxqt</literal> and <varname>USE_LXQT</varname> |
| 2862 |
to the list of required components. The most commonly |
| 2863 |
used are listed below (also documented at the top of |
| 2864 |
<filename>/usr/ports/Mk/Uses/lxqt.mk</filename>):</para> |
| 2865 |
|
| 2866 |
<table frame="none" xml:id="using-lxqt-components"> |
| 2867 |
<title>Available LXQt Components</title> |
| 2868 |
|
| 2869 |
<tgroup cols="2"> |
| 2870 |
<thead> |
| 2871 |
<row> |
| 2872 |
<entry>Name</entry> |
| 2873 |
<entry>Description</entry> |
| 2874 |
</row> |
| 2875 |
</thead> |
| 2876 |
|
| 2877 |
<tbody> |
| 2878 |
<row> |
| 2879 |
<entry><literal>buildtools</literal></entry> |
| 2880 |
<entry>Helpers additional CMake modules</entry> |
| 2881 |
</row> |
| 2882 |
|
| 2883 |
<row> |
| 2884 |
<entry><literal>libfmqt</literal></entry> |
| 2885 |
<entry>Libfm Qt bindings</entry> |
| 2886 |
</row> |
| 2887 |
|
| 2888 |
<row> |
| 2889 |
<entry><literal>lxqt</literal></entry> |
| 2890 |
<entry>LXQt core library</entry> |
| 2891 |
</row> |
| 2892 |
|
| 2893 |
<row> |
| 2894 |
<entry><literal>qtxdg</literal></entry> |
| 2895 |
<entry>Qt implementation of freedesktop.org |
| 2896 |
XDG specifications</entry> |
| 2897 |
</row> |
| 2898 |
</tbody> |
| 2899 |
</tgroup> |
| 2900 |
</table> |
| 2901 |
|
| 2902 |
<example xml:id="lxqt-components-example"> |
| 2903 |
<title><literal>USE_LXQT</literal> Example</title> |
| 2904 |
|
| 2905 |
<para>This is a simple example, |
| 2906 |
<literal>USE_LXQT</literal> brings dependency on |
| 2907 |
LXQt libraries. Required LXQt components and |
| 2908 |
other dependencies can be determined through |
| 2909 |
configure log.</para> |
| 2910 |
<programlisting>USES= cmake:outsource lxqt tar:xz |
| 2911 |
USE_QT5= buildtools_build qmake_build core dbus widgets |
| 2912 |
USE_LXQT= buildtools libfmqt</programlisting> |
| 2913 |
</example> |
| 2914 |
</sect1> |
| 2915 |
|
| 2857 |
<sect1 xml:id="using-java"> |
2916 |
<sect1 xml:id="using-java"> |
| 2858 |
<title>Using Java</title> |
2917 |
<title>Using Java</title> |
| 2859 |
|
2918 |
|