diff options
author | Guilherme Amadio <amadio@gentoo.org> | 2020-11-19 17:15:23 +0100 |
---|---|---|
committer | Guilherme Amadio <amadio@gentoo.org> | 2020-11-19 17:15:23 +0100 |
commit | 5e91db62387dad0f1fd97d4892aff39a40653fa0 (patch) | |
tree | 61ae4c8aed4f69aaa2deaa1ddd8b0c395198fde3 /net-libs/davix | |
parent | net-libs/davix: stable on amd64, x86 (diff) | |
download | gentoo-5e91db62387dad0f1fd97d4892aff39a40653fa0.tar.gz gentoo-5e91db62387dad0f1fd97d4892aff39a40653fa0.tar.bz2 gentoo-5e91db62387dad0f1fd97d4892aff39a40653fa0.zip |
net-libs/davix: move to cmake.eclass
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Guilherme Amadio <amadio@gentoo.org>
Diffstat (limited to 'net-libs/davix')
-rw-r--r-- | net-libs/davix/davix-0.7.6.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net-libs/davix/davix-0.7.6.ebuild b/net-libs/davix/davix-0.7.6.ebuild index 7357fa79011d..cd414ce3d7eb 100644 --- a/net-libs/davix/davix-0.7.6.ebuild +++ b/net-libs/davix/davix-0.7.6.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="High-performance file management over WebDAV/HTTP" HOMEPAGE="https://dmc.web.cern.ch/projects/davix" @@ -35,7 +35,7 @@ RDEPEND="${CDEPEND}" REQUIRED_USE="test? ( tools )" src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare for x in doc test; do if ! use $x; then @@ -58,18 +58,18 @@ src_configure() { -DSYSCONF_INSTALL_DIR="${EPREFIX}/etc" -DBUILD_TESTING=$(usex test) ) - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile if use doc; then - cmake-utils_src_compile doc + cmake_src_compile doc fi } src_install() { - cmake-utils_src_install + cmake_src_install if ! use tools; then rm -rf "${ED}/usr/share/man/man1" |