dev-cpp/xdgcfg: Migrate from cmake-utils to cmake.

This commit is contained in:
tastytea 2020-11-16 15:48:36 +01:00
parent 0ec947f43f
commit 3b330cb6ea
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
# Copyright 2019 Gentoo Authors # Copyright 2019, 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=7 EAPI=7
inherit cmake-utils inherit cmake
DESCRIPTION="Wrapper around libconfig that writes and reads files in XDG_CONFIG_HOME" DESCRIPTION="Wrapper around libconfig that writes and reads files in XDG_CONFIG_HOME"
HOMEPAGE="https://schlomp.space/tastytea/xdgcfg" HOMEPAGE="https://schlomp.space/tastytea/xdgcfg"
@ -31,11 +31,11 @@ src_configure() {
-DWITH_TESTS=$(usex test) -DWITH_TESTS=$(usex test)
) )
cmake-utils_src_configure cmake_src_configure
} }
src_compile() { src_compile() {
cmake-utils_src_compile cmake_src_compile
if use doc; then if use doc; then
./build_doc.sh || die "Generation of HTML documentation failed." ./build_doc.sh || die "Generation of HTML documentation failed."
@ -43,7 +43,7 @@ src_compile() {
} }
src_test() { src_test() {
BUILD_DIR="${BUILD_DIR}/tests" cmake-utils_src_test BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
} }
src_install() { src_install() {
@ -51,7 +51,7 @@ src_install() {
HTML_DOCS="doc/html/*" HTML_DOCS="doc/html/*"
fi fi
cmake-utils_src_install cmake_src_install
if use examples; then if use examples; then
dodoc examples/example.cpp dodoc examples/example.cpp