* [gentoo-commits] proj/qt:master commit in: dev-libs/libqtxdg/, lxqt-base/lxqt-session/, x11-misc/obconf-qt/, ...
@ 2019-12-31 16:44 Andreas Sturmlechner
0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2019-12-31 16:44 UTC (permalink / raw
To: gentoo-commits
commit: 716b4578b4b57d4caf861ff072475cdad3b0b114
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 23 23:25:19 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Dec 31 15:02:13 2019 +0000
URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=716b4578
*/*: Switch lxqt proj packages to cmake.eclass
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-libs/libqtxdg/libqtxdg-9999.ebuild | 6 +++---
dev-util/lxqt-build-tools/lxqt-build-tools-9999.ebuild | 2 +-
lxqt-base/liblxqt/liblxqt-9999.ebuild | 4 ++--
lxqt-base/libsysstat/libsysstat-9999.ebuild | 2 +-
lxqt-base/lxqt-about/lxqt-about-9999.ebuild | 2 +-
lxqt-base/lxqt-admin/lxqt-admin-9999.ebuild | 2 +-
lxqt-base/lxqt-config/lxqt-config-9999.ebuild | 6 +++---
lxqt-base/lxqt-globalkeys/lxqt-globalkeys-9999.ebuild | 2 +-
lxqt-base/lxqt-notificationd/lxqt-notificationd-9999.ebuild | 2 +-
lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-9999.ebuild | 4 ++--
lxqt-base/lxqt-panel/lxqt-panel-9999.ebuild | 6 +++---
lxqt-base/lxqt-policykit/lxqt-policykit-9999.ebuild | 4 ++--
lxqt-base/lxqt-powermanagement/lxqt-powermanagement-9999.ebuild | 2 +-
lxqt-base/lxqt-qtplugin/lxqt-qtplugin-9999.ebuild | 2 +-
lxqt-base/lxqt-runner/lxqt-runner-9999.ebuild | 4 ++--
lxqt-base/lxqt-session/lxqt-session-9999.ebuild | 6 +++---
lxqt-base/lxqt-sudo/lxqt-sudo-9999.ebuild | 2 +-
media-gfx/lximage-qt/lximage-qt-9999.ebuild | 2 +-
x11-libs/libfm-qt/libfm-qt-9999.ebuild | 2 +-
x11-misc/obconf-qt/obconf-qt-9999.ebuild | 2 +-
x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild | 2 +-
x11-themes/lxqt-themes/lxqt-themes-9999.ebuild | 2 +-
22 files changed, 34 insertions(+), 34 deletions(-)
diff --git a/dev-libs/libqtxdg/libqtxdg-9999.ebuild b/dev-libs/libqtxdg/libqtxdg-9999.ebuild
index f01b3321..60e5c259 100644
--- a/dev-libs/libqtxdg/libqtxdg-9999.ebuild
+++ b/dev-libs/libqtxdg/libqtxdg-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils virtualx
+inherit cmake virtualx
DESCRIPTION="A Qt implementation of XDG standards"
HOMEPAGE="https://lxqt.org/"
@@ -41,10 +41,10 @@ src_configure() {
local mycmakeargs=(
-DBUILD_TESTS=$(usex test)
)
- cmake-utils_src_configure
+ cmake_src_configure
}
src_test() {
# Tests don't work with C
- LC_ALL=en_US.utf8 virtx cmake-utils_src_test
+ LC_ALL=en_US.utf8 virtx cmake_src_test
}
diff --git a/dev-util/lxqt-build-tools/lxqt-build-tools-9999.ebuild b/dev-util/lxqt-build-tools/lxqt-build-tools-9999.ebuild
index 7cd05ead..1a30d8ad 100644
--- a/dev-util/lxqt-build-tools/lxqt-build-tools-9999.ebuild
+++ b/dev-util/lxqt-build-tools/lxqt-build-tools-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt Build tools"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/liblxqt/liblxqt-9999.ebuild b/lxqt-base/liblxqt/liblxqt-9999.ebuild
index 12f74412..16c596e9 100644
--- a/lxqt-base/liblxqt/liblxqt-9999.ebuild
+++ b/lxqt-base/liblxqt/liblxqt-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="Common base library for the LXQt desktop environment"
HOMEPAGE="https://lxqt.org/"
@@ -45,5 +45,5 @@ src_configure() {
local mycmakeargs=(
-DBUILD_BACKLIGHT_LINUX_BACKEND=$(usex backlight)
)
- cmake-utils_src_configure
+ cmake_src_configure
}
diff --git a/lxqt-base/libsysstat/libsysstat-9999.ebuild b/lxqt-base/libsysstat/libsysstat-9999.ebuild
index fe2f2307..501c9a8d 100644
--- a/lxqt-base/libsysstat/libsysstat-9999.ebuild
+++ b/lxqt-base/libsysstat/libsysstat-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="A Qt-based interface to system statistics"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/lxqt-about/lxqt-about-9999.ebuild b/lxqt-base/lxqt-about/lxqt-about-9999.ebuild
index 786aab0f..34a17829 100644
--- a/lxqt-base/lxqt-about/lxqt-about-9999.ebuild
+++ b/lxqt-base/lxqt-about/lxqt-about-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt about dialog"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/lxqt-admin/lxqt-admin-9999.ebuild b/lxqt-base/lxqt-admin/lxqt-admin-9999.ebuild
index 6675bd34..fe244eac 100644
--- a/lxqt-base/lxqt-admin/lxqt-admin-9999.ebuild
+++ b/lxqt-base/lxqt-admin/lxqt-admin-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt system administration tool"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/lxqt-config/lxqt-config-9999.ebuild b/lxqt-base/lxqt-config/lxqt-config-9999.ebuild
index 21fcecfc..8de668d9 100644
--- a/lxqt-base/lxqt-config/lxqt-config-9999.ebuild
+++ b/lxqt-base/lxqt-config/lxqt-config-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils xdg-utils
+inherit cmake xdg-utils
DESCRIPTION="LXQt system configuration control center"
HOMEPAGE="https://lxqt.org/"
@@ -56,11 +56,11 @@ src_configure() {
-DWITH_MONITOR="$(usex monitor)"
-DWITH_TOUCHPAD="$(usex touchpad)"
)
- cmake-utils_src_configure
+ cmake_src_configure
}
src_install() {
- cmake-utils_src_install
+ cmake_src_install
doman man/*.1 liblxqt-config-cursor/man/*.1 lxqt-config-appearance/man/*.1
}
diff --git a/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-9999.ebuild b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-9999.ebuild
index f3b8ab5a..a61f9b60 100644
--- a/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-9999.ebuild
+++ b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="Daemon and library for global keyboard shortcuts registration"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/lxqt-notificationd/lxqt-notificationd-9999.ebuild b/lxqt-base/lxqt-notificationd/lxqt-notificationd-9999.ebuild
index 5253f013..264768e9 100644
--- a/lxqt-base/lxqt-notificationd/lxqt-notificationd-9999.ebuild
+++ b/lxqt-base/lxqt-notificationd/lxqt-notificationd-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt notification daemon and library"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-9999.ebuild b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-9999.ebuild
index 333f665d..4c263bbf 100644
--- a/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-9999.ebuild
+++ b/lxqt-base/lxqt-openssh-askpass/lxqt-openssh-askpass-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt OpenSSH user password prompt tool"
HOMEPAGE="https://lxqt.org/"
@@ -32,7 +32,7 @@ RDEPEND="
DEPEND="${RDEPEND}"
src_install(){
- cmake-utils_src_install
+ cmake_src_install
doman man/*.1
echo "SSH_ASKPASS='${EPREFIX}/usr/bin/lxqt-openssh-askpass'" >> "${T}/99${PN}" \
diff --git a/lxqt-base/lxqt-panel/lxqt-panel-9999.ebuild b/lxqt-base/lxqt-panel/lxqt-panel-9999.ebuild
index 720609ef..8c23822a 100644
--- a/lxqt-base/lxqt-panel/lxqt-panel-9999.ebuild
+++ b/lxqt-base/lxqt-panel/lxqt-panel-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt desktop panel and plugins"
HOMEPAGE="https://lxqt.org/"
@@ -104,10 +104,10 @@ src_configure() {
)
fi
- cmake-utils_src_configure
+ cmake_src_configure
}
src_install(){
- cmake-utils_src_install
+ cmake_src_install
doman panel/man/*.1
}
diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-9999.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-9999.ebuild
index 05a8f641..0864b15c 100644
--- a/lxqt-base/lxqt-policykit/lxqt-policykit-9999.ebuild
+++ b/lxqt-base/lxqt-policykit/lxqt-policykit-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt PolKit authentication agent"
HOMEPAGE="https://lxqt.org/"
@@ -37,6 +37,6 @@ RDEPEND="
DEPEND="${RDEPEND}"
src_install(){
- cmake-utils_src_install
+ cmake_src_install
doman man/*.1
}
diff --git a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-9999.ebuild b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-9999.ebuild
index 1693c9bb..39aa1978 100644
--- a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-9999.ebuild
+++ b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt daemon for power management and auto-suspend"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-9999.ebuild b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-9999.ebuild
index 2005d054..cf5c8d82 100644
--- a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-9999.ebuild
+++ b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt system integration plugin for Qt"
HOMEPAGE="https://lxqt.org/"
diff --git a/lxqt-base/lxqt-runner/lxqt-runner-9999.ebuild b/lxqt-base/lxqt-runner/lxqt-runner-9999.ebuild
index 74b7d9d1..6189ad6d 100644
--- a/lxqt-base/lxqt-runner/lxqt-runner-9999.ebuild
+++ b/lxqt-base/lxqt-runner/lxqt-runner-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt quick launcher"
HOMEPAGE="https://lxqt.org/"
@@ -42,6 +42,6 @@ RDEPEND="
DEPEND="${RDEPEND}"
src_install(){
- cmake-utils_src_install
+ cmake_src_install
doman man/*.1
}
diff --git a/lxqt-base/lxqt-session/lxqt-session-9999.ebuild b/lxqt-base/lxqt-session/lxqt-session-9999.ebuild
index 63213382..0978b188 100644
--- a/lxqt-base/lxqt-session/lxqt-session-9999.ebuild
+++ b/lxqt-base/lxqt-session/lxqt-session-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQT session manager"
HOMEPAGE="https://lxqt.org/"
@@ -48,11 +48,11 @@ src_configure() {
local mycmakeargs=(
-DWITH_LIBUDEV=$(usex udev)
)
- cmake-utils_src_configure
+ cmake_src_configure
}
src_install(){
- cmake-utils_src_install
+ cmake_src_install
doman lxqt-config-session/man/*.1 lxqt-session/man/*.1
echo XDG_CONFIG_DIRS=\"${EPREFIX}/usr/share\" >> 91lxqt-config-dir
diff --git a/lxqt-base/lxqt-sudo/lxqt-sudo-9999.ebuild b/lxqt-base/lxqt-sudo/lxqt-sudo-9999.ebuild
index 9768a20a..9d7994fc 100644
--- a/lxqt-base/lxqt-sudo/lxqt-sudo-9999.ebuild
+++ b/lxqt-base/lxqt-sudo/lxqt-sudo-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXQt GUI frontend for sudo"
HOMEPAGE="https://lxqt.org/"
diff --git a/media-gfx/lximage-qt/lximage-qt-9999.ebuild b/media-gfx/lximage-qt/lximage-qt-9999.ebuild
index 7e74167d..724fa9c4 100644
--- a/media-gfx/lximage-qt/lximage-qt-9999.ebuild
+++ b/media-gfx/lximage-qt/lximage-qt-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="LXImage Image Viewer - GPicView replacement"
HOMEPAGE="https://lxqt.org/"
diff --git a/x11-libs/libfm-qt/libfm-qt-9999.ebuild b/x11-libs/libfm-qt/libfm-qt-9999.ebuild
index de820366..8ca92a4a 100644
--- a/x11-libs/libfm-qt/libfm-qt-9999.ebuild
+++ b/x11-libs/libfm-qt/libfm-qt-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="Qt port of libfm, a library providing components to build desktop file managers"
HOMEPAGE="https://lxqt.org/"
diff --git a/x11-misc/obconf-qt/obconf-qt-9999.ebuild b/x11-misc/obconf-qt/obconf-qt-9999.ebuild
index e2194d81..eec83363 100644
--- a/x11-misc/obconf-qt/obconf-qt-9999.ebuild
+++ b/x11-misc/obconf-qt/obconf-qt-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils xdg-utils
+inherit cmake xdg-utils
DESCRIPTION="Openbox window manager configuration tool"
HOMEPAGE="https://lxqt.org/"
diff --git a/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild b/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild
index e8f40638..7c8a2f1b 100644
--- a/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild
+++ b/x11-misc/pcmanfm-qt/pcmanfm-qt-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils xdg-utils
+inherit cmake xdg-utils
if [[ "${PV}" == "9999" ]]; then
inherit git-r3
diff --git a/x11-themes/lxqt-themes/lxqt-themes-9999.ebuild b/x11-themes/lxqt-themes/lxqt-themes-9999.ebuild
index 8e8ce23c..f8604467 100644
--- a/x11-themes/lxqt-themes/lxqt-themes-9999.ebuild
+++ b/x11-themes/lxqt-themes/lxqt-themes-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit cmake-utils
+inherit cmake
DESCRIPTION="Themes, graphics and icons for LXQt"
HOMEPAGE="https://lxqt.org/"
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2019-12-31 16:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-31 16:44 [gentoo-commits] proj/qt:master commit in: dev-libs/libqtxdg/, lxqt-base/lxqt-session/, x11-misc/obconf-qt/, Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox