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 2F1A21395E2 for ; Sat, 10 Dec 2016 08:57:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 829F521C0AA; Sat, 10 Dec 2016 08:57:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5EA6321C0AA for ; Sat, 10 Dec 2016 08:57:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D0F8341117 for ; Sat, 10 Dec 2016 08:57:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B812D4A6 for ; Sat, 10 Dec 2016 08:57:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1481360179.c67959774e4604c5f408b84bb9f57fe271f11790.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpdscribble/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mpdscribble/mpdscribble-9999.ebuild X-VCS-Directories: media-sound/mpdscribble/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c67959774e4604c5f408b84bb9f57fe271f11790 X-VCS-Branch: master Date: Sat, 10 Dec 2016 08:57:08 +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-Archives-Salt: f1c84503-f074-41ac-8fd6-a4c4a26c49b4 X-Archives-Hash: 656ff5b6fd89c819d24fc760b0801c3c commit: c67959774e4604c5f408b84bb9f57fe271f11790 Author: soredake krutt org> AuthorDate: Fri Dec 9 15:44:04 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 10 08:56:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6795977 media-sound/mpdscribble: added missing autotools inherit to -9999 Closes: https://github.com/gentoo/gentoo/pull/3063 media-sound/mpdscribble/mpdscribble-9999.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-sound/mpdscribble/mpdscribble-9999.ebuild b/media-sound/mpdscribble/mpdscribble-9999.ebuild index 5e27b2d..4db61da 100644 --- a/media-sound/mpdscribble/mpdscribble-9999.ebuild +++ b/media-sound/mpdscribble/mpdscribble-9999.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=6 -inherit git-r3 +inherit git-r3 autotools DESCRIPTION="An MPD client that submits information to Audioscrobbler" HOMEPAGE="http://mpd.wikia.com/wiki/Client:Mpdscribble" @@ -21,6 +21,11 @@ RDEPEND="dev-libs/glib DEPEND="${RDEPEND} virtual/pkgconfig" +src_prepare() { + default + eautoreconf +} + src_configure() { econf \ --with-http-client=$(usex curl curl soup)