From 10b24a948d80a056afb8b09fa77fafea8760cc4a Mon Sep 17 00:00:00 2001 From: Sevan Janiyan Date: Fri, 3 Mar 2017 19:43:03 +0000 Subject: [PATCH] PR: 215650 Submitted by: Olivier Duchateau Reviewed by: swills bjk Approved by: wblock (mentor) Differential Revision: https://reviews.freebsd.org/D9039 --- .../porters-handbook/special/chapter.xml | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml b/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml index b535968753..96d2e47e60 100644 --- a/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml +++ b/en_US.ISO8859-1/books/porters-handbook/special/chapter.xml @@ -2854,6 +2854,63 @@ USE_QT4= moc_build qmake_build rcc_build uic_build + + Using LXQt + + Applications depending on LXQt should set + USES+= lxqt and set USE_LXQT + to the list of required components from the table below + + + Available LXQt Components + + + + + Name + Description + + + + + + buildtools + Helpers for additional CMake modules + + + + libfmqt + Libfm Qt bindings + + + + lxqt + LXQt core library + + + + qtxdg + Qt implementation of freedesktop.org + XDG specifications + + + +
+ + + <literal>USE_LXQT</literal> Example + + This is a simple example, + USE_LXQT adds a dependency on + LXQt libraries. Required LXQt components and + other dependencies can be determined from the + configure log. + USES= cmake:outsource lxqt tar:xz +USE_QT5= buildtools_build qmake_build core dbus widgets +USE_LXQT= buildtools libfmqt + +
+ Using Java