From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9763D138350 for ; Thu, 30 Apr 2020 12:00:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4CBBE0916; Thu, 30 Apr 2020 12:00:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BAD10E0916 for ; Thu, 30 Apr 2020 12:00:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ED17634F02B for ; Thu, 30 Apr 2020 12:00:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDA73204 for ; Thu, 30 Apr 2020 12:00:19 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1588247995.8fdc38a726c736a53e956162bcc91f3aa49aa7b6.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/amule/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/amule/amule-9999.ebuild X-VCS-Directories: net-p2p/amule/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 8fdc38a726c736a53e956162bcc91f3aa49aa7b6 X-VCS-Branch: master Date: Thu, 30 Apr 2020 12:00:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d4404234-3186-49ae-932b-65797d8373e2 X-Archives-Hash: 4de96af516aa3b96152f86b403e0a1ee commit: 8fdc38a726c736a53e956162bcc91f3aa49aa7b6 Author: Alexander Tsoy tsoy me> AuthorDate: Wed Apr 29 16:59:16 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Apr 30 11:59:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fdc38a7 net-p2p/amule: Add missing readline dep to live ebuild Signed-off-by: Alexander Tsoy tsoy.me> Signed-off-by: Joonas Niilola gentoo.org> net-p2p/amule/amule-9999.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/net-p2p/amule/amule-9999.ebuild b/net-p2p/amule/amule-9999.ebuild index f14cc28e5c4..a108c975290 100644 --- a/net-p2p/amule/amule-9999.ebuild +++ b/net-p2p/amule/amule-9999.ebuild @@ -27,6 +27,7 @@ RDEPEND=" dev-libs/boost:= dev-libs/crypto++:= sys-libs/binutils-libs:0= + sys-libs/readline:0= sys-libs/zlib >=x11-libs/wxGTK-3.0.4:${WX_GTK_VER}[X?] daemon? ( acct-user/amule ) @@ -42,8 +43,10 @@ RDEPEND=" DEPEND="${RDEPEND} X? ( dev-util/desktop-file-utils ) " -BDEPEND="virtual/pkgconfig - nls? ( sys-devel/gettext )" +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" PATCHES=( ) @@ -55,7 +58,7 @@ pkg_setup() { src_prepare() { default - if [[ "${PV}" == *9999 ]]; then + if [[ ${PV} == 9999 ]]; then ./autogen.sh || die fi }