diff options
author | Volkmar W. Pogatzki <gentoo@pogatzki.net> | 2021-06-27 09:04:29 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-29 05:57:10 +0100 |
commit | 89a63f6916d92d33d9913b0dc1cdf47b3cc43660 (patch) | |
tree | d9133acbb5a32d494a2db7bc561cd6e088e31b77 /net-misc/tigervnc | |
parent | net-misc/tigervnc: min java :1.8 (diff) | |
download | gentoo-89a63f6916d92d33d9913b0dc1cdf47b3cc43660.tar.gz gentoo-89a63f6916d92d33d9913b0dc1cdf47b3cc43660.tar.bz2 gentoo-89a63f6916d92d33d9913b0dc1cdf47b3cc43660.zip |
net-misc/tigervnc: move away from cmake-utils
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/21398
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/tigervnc')
-rw-r--r-- | net-misc/tigervnc/tigervnc-1.9.0-r2.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net-misc/tigervnc/tigervnc-1.9.0-r2.ebuild b/net-misc/tigervnc/tigervnc-1.9.0-r2.ebuild index 09c050aec41e..cf6b7e952c94 100644 --- a/net-misc/tigervnc/tigervnc-1.9.0-r2.ebuild +++ b/net-misc/tigervnc/tigervnc-1.9.0-r2.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 CMAKE_IN_SOURCE_BUILD=1 -inherit autotools cmake-utils eutils flag-o-matic java-pkg-opt-2 systemd xdg-utils gnome2-utils +inherit autotools cmake flag-o-matic java-pkg-opt-2 systemd xdg-utils gnome2-utils XSERVER_VERSION="1.20.0" @@ -88,7 +88,7 @@ src_prepare() { sed -i 's:^\(install(.* DESTINATION ${DOC_DIR})\):#\1:' \ cmake/BuildPackages.cmake || die - cmake-utils_src_prepare + cmake_src_prepare if use server ; then cd unix/xserver || die @@ -111,7 +111,7 @@ src_configure() { -DBUILD_JAVA=$(usex java) ) - cmake-utils_src_configure + cmake_src_configure if use server ; then cd unix/xserver || die @@ -148,7 +148,7 @@ src_configure() { } src_compile() { - cmake-utils_src_compile + cmake_src_compile if use server ; then # deps of the vnc module and the module itself @@ -163,7 +163,7 @@ src_compile() { } src_install() { - cmake-utils_src_install + cmake_src_install if use server ; then emake -C unix/xserver/hw/vnc DESTDIR="${D}" install |