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/librevenge/
Date: Tue, 01 Oct 2019 23:43:53
Message-Id: 1569973384.57e9a270c3a65e4007a7990fbc56f677566d93be.asturm@gentoo
1 commit: 57e9a270c3a65e4007a7990fbc56f677566d93be
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 1 23:22:32 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 1 23:43:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e9a270
7
8 dev-libs/librevenge: EAPI-7 bump
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/librevenge/librevenge-9999.ebuild | 27 +++++++++++++++------------
14 1 file changed, 15 insertions(+), 12 deletions(-)
15
16 diff --git a/dev-libs/librevenge/librevenge-9999.ebuild b/dev-libs/librevenge/librevenge-9999.ebuild
17 index c40659225a0..dfb84af90b7 100644
18 --- a/dev-libs/librevenge/librevenge-9999.ebuild
19 +++ b/dev-libs/librevenge/librevenge-9999.ebuild
20 @@ -1,30 +1,32 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 inherit flag-o-matic multilib-minimal
29
30 -DESCRIPTION="A helper library for REVerse ENGineered formats filters"
31 -HOMEPAGE="https://sf.net/p/libwpd/librevenge"
32 if [[ ${PV} == *9999 ]] ; then
33 EGIT_REPO_URI="git://git.code.sf.net/p/libwpd/librevenge"
34 inherit git-r3 autotools
35 else
36 SRC_URI="https://sf.net/projects/libwpd/files/${PN}/${P}/${P}.tar.xz"
37 - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~x86 ~x86-fbsd"
38 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
39 fi
40 +DESCRIPTION="Helper library for REVerse ENGineered formats filters"
41 +HOMEPAGE="https://sf.net/p/libwpd/librevenge"
42
43 LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
44 SLOT="0"
45 IUSE="doc test"
46
47 +BDEPEND="
48 + doc? ( app-doc/doxygen )
49 +"
50 RDEPEND="
51 sys-libs/zlib[${MULTILIB_USEDEP}]
52 "
53 DEPEND="${RDEPEND}
54 dev-libs/boost
55 - doc? ( app-doc/doxygen )
56 test? ( dev-util/cppunit[${MULTILIB_USEDEP}] )
57 "
58
59 @@ -37,15 +39,16 @@ src_prepare() {
60 }
61
62 multilib_src_configure() {
63 - ECONF_SOURCE=${S} \
64 - econf \
65 - --disable-static \
66 - --disable-werror \
67 - $(use_with doc docs) \
68 + local myeconfargs=(
69 + --disable-static
70 + --disable-werror
71 + $(use_with doc docs)
72 $(use_enable test tests)
73 + )
74 + ECONF_SOURCE=${S} econf "${myeconfargs[@]}"
75 }
76
77 multilib_src_install_all() {
78 einstalldocs
79 - find "${D}" -name '*.la' -delete || die
80 + find "${D}" -name '*.la' -type f -delete || die
81 }