Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/amule/
Date: Thu, 30 Apr 2020 12:00:30
Message-Id: 1588247995.8fdc38a726c736a53e956162bcc91f3aa49aa7b6.juippis@gentoo
1 commit: 8fdc38a726c736a53e956162bcc91f3aa49aa7b6
2 Author: Alexander Tsoy <alexander <AT> tsoy <DOT> me>
3 AuthorDate: Wed Apr 29 16:59:16 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 11:59:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fdc38a7
7
8 net-p2p/amule: Add missing readline dep to live ebuild
9
10 Signed-off-by: Alexander Tsoy <alexander <AT> tsoy.me>
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 net-p2p/amule/amule-9999.ebuild | 9 ++++++---
14 1 file changed, 6 insertions(+), 3 deletions(-)
15
16 diff --git a/net-p2p/amule/amule-9999.ebuild b/net-p2p/amule/amule-9999.ebuild
17 index f14cc28e5c4..a108c975290 100644
18 --- a/net-p2p/amule/amule-9999.ebuild
19 +++ b/net-p2p/amule/amule-9999.ebuild
20 @@ -27,6 +27,7 @@ RDEPEND="
21 dev-libs/boost:=
22 dev-libs/crypto++:=
23 sys-libs/binutils-libs:0=
24 + sys-libs/readline:0=
25 sys-libs/zlib
26 >=x11-libs/wxGTK-3.0.4:${WX_GTK_VER}[X?]
27 daemon? ( acct-user/amule )
28 @@ -42,8 +43,10 @@ RDEPEND="
29 DEPEND="${RDEPEND}
30 X? ( dev-util/desktop-file-utils )
31 "
32 -BDEPEND="virtual/pkgconfig
33 - nls? ( sys-devel/gettext )"
34 +BDEPEND="
35 + virtual/pkgconfig
36 + nls? ( sys-devel/gettext )
37 +"
38
39 PATCHES=(
40 )
41 @@ -55,7 +58,7 @@ pkg_setup() {
42 src_prepare() {
43 default
44
45 - if [[ "${PV}" == *9999 ]]; then
46 + if [[ ${PV} == 9999 ]]; then
47 ./autogen.sh || die
48 fi
49 }