Fixed some LXDE mentions

This commit is contained in:
Alf Gaida 2018-03-25 22:52:49 +02:00
parent 4d434cae4f
commit 2ea312ff94
4 changed files with 23 additions and 11 deletions

View File

@ -145,7 +145,7 @@ lxqt-build-tools-0.4.0 / 2017-09-22
* Removes lxqt_translate_desktop() from the _use.cnake
* Adds Qt5TranslationLoader cmake module
* Fix HtmlDelegate and move it to its own file. Also get rid of X11 on CMakeLists.txt.
* Delete XfitMan class. Fixes lxde/lxde-qt#226
* Delete XfitMan class. Fixes lxqt/lxqt#226
* Don't update (extract) translations by default.
* Includes all LXQt translation modules
* Adds automatic translations loaders for LXQt libs and apps
@ -177,7 +177,7 @@ lxqt-build-tools-0.4.0 / 2017-09-22
* Use newer version of cmake 2.8.9
* Detect the path of qmake correctly for Qt5.
* Fix after merging from master, by removing dupplicated items
* Merge branch 'master' of https://github.com/lxde/liblxqt into qt5
* Merge branch 'master' of https://github.com/lxqt/liblxqt into qt5
* Update qt5 porting
* Install pkgconfig file to /usr/local/libdata/pkgconfig when FreeBSD is detected.
* Set link directories properly

View File

@ -2,20 +2,32 @@
## Introduction
This repository is providing several tools needed to build LXQt itself as well as other components maintained by the LXQt project.
This repository is providing several tools needed to build LXQt itself as well
as other components maintained by the LXQt project.
These tools used to be spread over the repositories of various other components and were summarized to ease dependency management. So far many components, in particular [liblxqt](https://github.com/lxde/liblxqt), were representing a build dependency without being needed themselves but only because their repository was providing a subset of the tools which are now summarized here. So the use of this repository will reduce superfluous and bloated dependencies.
These tools used to be spread over the repositories of various other components
and were summarized to ease dependency management. So far many components, in
particular [liblxqt](https://github.com/lxqt/liblxqt), were representing a build
dependency without being needed themselves but only because their repository was
providing a subset of the tools which are now summarized here. So the use of this
repository will reduce superfluous and bloated dependencies.
## Installation
### Compiling sources
To build only CMake and Qt5Core are needed, optionally Git to pull VCS checkouts. Runtime dependencies do not exist.
To build only CMake and Qt5Core are needed, optionally Git to pull VCS checkouts.
Runtime dependencies do not exist.
Code configuration is handled by CMake. CMake variable `CMAKE_INSTALL_PREFIX` has to be set to `/usr` on most operating systems.
Code configuration is handled by CMake. CMake variable `CMAKE_INSTALL_PREFIX`
has to be set to `/usr` on most operating systems.
To build run `make`, to install `make install` which accepts variable `DESTDIR` as usual. (Strictly speaking `make` isn't even needed right now. On the other hand it doesn't hurt so packagers may just include it in case it'll be needed one day.)
To build run `make`, to install `make install` which accepts variable `DESTDIR`
as usual. (Strictly speaking `make` isn't even needed right now. On the other
hand it doesn't hurt so packagers may just include it in case it'll be needed
one day.)
## Packagers
This package is arch-independent now. You can simply package it as `BuildArch: noarch` (rpm) or `arch: all` (deb).
This package is arch-independent now. You can simply package it as
`BuildArch: noarch` (rpm) or `arch: all` (deb).

View File

@ -93,7 +93,7 @@ function(lxqt_translate_desktop _RESULT)
file(WRITE ${_txFile}
"[ -f ${_inFile} ] || exit 0\n"
"echo '[lxde-qt.${_fileName}_${_fileType}]'\n"
"echo '[lxqt.${_fileName}_${_fileType}]'\n"
"echo 'type = DESKTOP'\n"
"echo 'source_lang = en'\n"
"echo 'source_file = ${_tx_inFile}'\n"

View File

@ -79,7 +79,7 @@
#
# TRANSLATIONS_REPO External git repository with translations - only the ${TEMPLATE} directory
# is pulled (using the "sparse checkout").
# Optional (defaults to "https://github.com/lxde/lxqt-l10n.git").
# Optional (defaults to "https://github.com/lxqt/lxqt-l10n.git").
#
# TRANSLATIONS_REFSPEC Optional refspec of external repository. Used in git pull.
# Defaults to "master".
@ -142,7 +142,7 @@ function(lxqt_translate_ts qmFiles)
endif()
if (NOT DEFINED TR_TRANSLATIONS_REPO)
set(TR_TRANSLATIONS_REPO "https://github.com/lxde/lxqt-l10n.git")
set(TR_TRANSLATIONS_REPO "https://github.com/lxqt/lxqt-l10n.git")
endif()
if (NOT DEFINED TR_TRANSLATIONS_REFSPEC)