Gentoo Archives: gentoo-commits

From: Rafael Martins <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/blogc/
Date: Mon, 29 Feb 2016 00:30:28
Message-Id: 1456705735.3c1bc083d6a342a5577021343d63f8f1d3772be7.rafaelmartins@gentoo
1 commit: 3c1bc083d6a342a5577021343d63f8f1d3772be7
2 Author: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 29 00:28:55 2016 +0000
4 Commit: Rafael Martins <rafaelmartins <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 29 00:28:55 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c1bc083
7
8 app-text/blogc: updated live ebuild
9
10 Package-Manager: portage-2.2.26
11
12 app-text/blogc/blogc-9999.ebuild | 19 ++++++++++---------
13 1 file changed, 10 insertions(+), 9 deletions(-)
14
15 diff --git a/app-text/blogc/blogc-9999.ebuild b/app-text/blogc/blogc-9999.ebuild
16 index f50ce2b..cddb4f5 100644
17 --- a/app-text/blogc/blogc-9999.ebuild
18 +++ b/app-text/blogc/blogc-9999.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=5
24 +EAPI=6
25
26 if [[ ${PV} = *9999* ]]; then
27 EGIT_REPO_URI="
28 @@ -11,8 +11,6 @@ if [[ ${PV} = *9999* ]]; then
29 inherit git-r3 autotools
30 fi
31
32 -inherit eutils
33 -
34 DESCRIPTION="A blog compiler"
35 HOMEPAGE="http://blogc.org/"
36
37 @@ -21,24 +19,26 @@ KEYWORDS="~amd64 ~x86"
38 if [[ ${PV} = *9999* ]]; then
39 SRC_URI=""
40 KEYWORDS=""
41 - DEPEND="app-text/ronn"
42 + RDEPEND="=dev-libs/squareball-9999"
43 + DEPEND="${RDEPEND}
44 + app-text/ronn"
45 +else
46 + RDEPEND=">=dev-libs/squareball-0.1"
47 + DEPEND="${RDEPEND}"
48 fi
49
50 LICENSE="BSD"
51 SLOT="0"
52 IUSE="test"
53
54 -RDEPEND=""
55 -
56 -# pkg-config is used only to find cmocka libraries
57 DEPEND="${DEPEND}
58 + virtual/pkgconfig
59 test? (
60 - virtual/pkgconfig
61 dev-util/cmocka )"
62
63 src_prepare() {
64 [[ ${PV} = *9999* ]] && eautoreconf
65 - epatch_user
66 + eapply_user
67 default
68 }
69
70 @@ -52,5 +52,6 @@ src_configure() {
71 econf \
72 $(use_enable test tests) \
73 --disable-valgrind \
74 + --with-squareball=system \
75 ${myconf}
76 }