diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-02 01:57:34 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-02 20:04:42 +0100 |
commit | 87dba25ff56f7f54573d2a1f52d5241b7f4f1247 (patch) | |
tree | 1e014836043c009e2ddcfc7f8b877adb9b1a98e9 /dev-libs/poco | |
parent | net-vpn/wireguard-tools: bump to 1.0.20200102 (diff) | |
download | gentoo-87dba25ff56f7f54573d2a1f52d5241b7f4f1247.tar.gz gentoo-87dba25ff56f7f54573d2a1f52d5241b7f4f1247.tar.bz2 gentoo-87dba25ff56f7f54573d2a1f52d5241b7f4f1247.zip |
*/*: Switch m-n packages to cmake.eclass
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/poco')
-rw-r--r-- | dev-libs/poco/poco-1.9.0-r2.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-libs/poco/poco-1.9.0-r2.ebuild b/dev-libs/poco/poco-1.9.0-r2.ebuild index c122dc9b1642..a0c09ae84691 100644 --- a/dev-libs/poco/poco-1.9.0-r2.ebuild +++ b/dev-libs/poco/poco-1.9.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="C++ libraries for building network-based applications" HOMEPAGE="https://pocoproject.org/" @@ -52,7 +52,7 @@ S="${WORKDIR}/${PN}-${P}-release" PATCHES=( "${FILESDIR}/${PN}-1.7.2-iodbc-incdir.patch" ) src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare if use test ; then # ignore missing tests on experimental library @@ -115,15 +115,15 @@ src_configure() { -DENABLE_ZIP="$(usex zip)" ) - cmake-utils_src_configure + cmake_src_configure } src_test() { - POCO_BASE="${S}" cmake-utils_src_test + POCO_BASE="${S}" cmake_src_test } src_install() { - cmake-utils_src_install + cmake_src_install if use examples ; then for sd in */samples ; do |