Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/stp/
Date: Wed, 01 Jan 2020 10:17:33
Message-Id: 1577873836.ad2372cfd284cad95532615720b4c659d1dcaebf.asturm@gentoo
1 commit: ad2372cfd284cad95532615720b4c659d1dcaebf
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 1 10:15:52 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 10:17:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad2372cf
7
8 dev-libs/stp: Switch to cmake.eclass
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/stp/stp-2.3.3.ebuild | 10 +++++-----
14 1 file changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/dev-libs/stp/stp-2.3.3.ebuild b/dev-libs/stp/stp-2.3.3.ebuild
17 index a900384b217..69e3d1b92d7 100644
18 --- a/dev-libs/stp/stp-2.3.3.ebuild
19 +++ b/dev-libs/stp/stp-2.3.3.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 -inherit cmake-utils
28 +inherit cmake
29
30 DESCRIPTION="Simple Theorem Prover, an efficient SMT solver for bitvectors"
31 HOMEPAGE="https://stp.github.io/"
32 @@ -23,7 +23,7 @@ src_prepare() {
33 # replace static lib with $(get_libdir)
34 sed -i "s/set(LIBDIR lib/set(LIBDIR $(get_libdir)/" CMakeLists.txt || die
35
36 - cmake-utils_src_prepare
37 + cmake_src_prepare
38 }
39
40 src_configure() {
41 @@ -33,11 +33,11 @@ src_configure() {
42 -DENABLE_PYTHON_INTERFACE="$(usex python)"
43 -DSTATICCOMPILE="$(usex static)"
44 )
45 - cmake-utils_src_configure
46 + cmake_src_configure
47 }
48
49 src_install() {
50 - cmake-utils_src_install
51 + cmake_src_install
52
53 # don't install to /usr/man
54 doman "${D}/usr/man/man1/stp.1"