Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libetonyek/
Date: Tue, 01 Oct 2019 23:43:51
Message-Id: 1569973385.5f7bb23e33d15ad5e5d73fbe7d0543e9c76057f1.asturm@gentoo
1 commit: 5f7bb23e33d15ad5e5d73fbe7d0543e9c76057f1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 1 23:29:45 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 1 23:43:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7bb23e
7
8 app-text/libetonyek: Populate BDEPEND
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/libetonyek/libetonyek-9999.ebuild | 12 +++++++-----
14 1 file changed, 7 insertions(+), 5 deletions(-)
15
16 diff --git a/app-text/libetonyek/libetonyek-9999.ebuild b/app-text/libetonyek/libetonyek-9999.ebuild
17 index 5a2e3527e53..9bea9ad25cf 100644
18 --- a/app-text/libetonyek/libetonyek-9999.ebuild
19 +++ b/app-text/libetonyek/libetonyek-9999.ebuild
20 @@ -3,7 +3,7 @@
21
22 EAPI=7
23
24 -if [[ ${PV} = 9999 ]]; then
25 +if [[ ${PV} = *9999 ]]; then
26 EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git"
27 inherit autotools git-r3
28 else
29 @@ -17,6 +17,10 @@ LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
30 SLOT="0"
31 IUSE="doc static-libs test"
32
33 +BDEPEND="
34 + virtual/pkgconfig
35 + doc? ( app-doc/doxygen )
36 +"
37 RDEPEND="
38 app-text/liblangtag
39 dev-libs/librevenge
40 @@ -28,15 +32,13 @@ DEPEND="${RDEPEND}
41 dev-libs/boost
42 media-libs/glm
43 sys-devel/libtool
44 - virtual/pkgconfig
45 - doc? ( app-doc/doxygen )
46 test? ( dev-util/cppunit )
47 "
48
49 src_prepare() {
50 default
51 [[ -d m4 ]] || mkdir "m4"
52 - [[ ${PV} == 9999 ]] && eautoreconf
53 + [[ ${PV} == *9999 ]] && eautoreconf
54 }
55
56 src_configure() {
57 @@ -57,5 +59,5 @@ src_configure() {
58
59 src_install() {
60 default
61 - find "${D}" -name '*.la' -delete || die
62 + find "${D}" -name '*.la' -type f -delete || die
63 }