diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-19 00:27:36 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-19 00:28:57 +0100 |
commit | 4954e6c3ddc72cb0343c78d68e0bae075e3f3639 (patch) | |
tree | 19d8ccd1b27e9b608360a2242e53e97684c9b328 /dev-libs/quazip | |
parent | app-admin/rasdaemon: 0.6.5 bump (diff) | |
download | gentoo-4954e6c3ddc72cb0343c78d68e0bae075e3f3639.tar.gz gentoo-4954e6c3ddc72cb0343c78d68e0bae075e3f3639.tar.bz2 gentoo-4954e6c3ddc72cb0343c78d68e0bae075e3f3639.zip |
dev-libs/quazip: Switch to cmake.eclass
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/quazip')
-rw-r--r-- | dev-libs/quazip/quazip-0.8.1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-libs/quazip/quazip-0.8.1.ebuild b/dev-libs/quazip/quazip-0.8.1.ebuild index 6270dd67e87c..dab1691cc988 100644 --- a/dev-libs/quazip/quazip-0.8.1.ebuild +++ b/dev-libs/quazip/quazip-0.8.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit cmake-utils flag-o-matic qmake-utils +inherit cmake flag-o-matic qmake-utils DESCRIPTION="Simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package" HOMEPAGE="https://stachenov.github.io/quazip/" @@ -22,7 +22,7 @@ RDEPEND=" DEPEND="${RDEPEND}" src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare if ! use static-libs ; then sed -e "/^install/ s/quazip_static//" -i quazip/CMakeLists.txt || die fi @@ -37,11 +37,11 @@ src_configure() { -DBUILD_WITH_QT4=OFF -DLIB_SUFFIX=${libdir/lib/} ) - cmake-utils_src_configure + cmake_src_configure } src_install() { - cmake-utils_src_install + cmake_src_install # compatibility with not yet fixed rdeps (Gentoo bug #598136) dosym libquazip5.so /usr/$(get_libdir)/libquazip.so |