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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0531115802F for ; Fri, 10 Mar 2023 11:41:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 12822E0858; Fri, 10 Mar 2023 11:41:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC6E1E0858 for ; Fri, 10 Mar 2023 11:41:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA8F2340B27 for ; Fri, 10 Mar 2023 11:41:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A11F98D7 for ; Fri, 10 Mar 2023 11:40:59 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1678448447.a2baf61e7de268b0c9c379de77f7c446810f2e06.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmappl/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmappl/wmappl-0.71-r1.ebuild X-VCS-Directories: x11-plugins/wmappl/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: a2baf61e7de268b0c9c379de77f7c446810f2e06 X-VCS-Branch: master Date: Fri, 10 Mar 2023 11:40:59 +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: 725ec468-944a-4994-b22c-b8a9c2843ab8 X-Archives-Hash: 0f52a2c671aab74903b920f1c8f67d4a commit: a2baf61e7de268b0c9c379de77f7c446810f2e06 Author: Bernard Cafarelli gentoo org> AuthorDate: Fri Mar 10 11:22:08 2023 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Fri Mar 10 11:40:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2baf61e x11-plugins/wmappl: fix implicit function declarations in configure Closes: https://bugs.gentoo.org/898932 Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmappl/wmappl-0.71-r1.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/x11-plugins/wmappl/wmappl-0.71-r1.ebuild b/x11-plugins/wmappl/wmappl-0.71-r1.ebuild index 58df593547ac..185a037c7024 100644 --- a/x11-plugins/wmappl/wmappl-0.71-r1.ebuild +++ b/x11-plugins/wmappl/wmappl-0.71-r1.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit autotools + DESCRIPTION="Simple application launcher for the Window Maker dock" HOMEPAGE="https://www.dockapps.net/wmappl" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -17,3 +19,8 @@ DEPEND="${RDEPEND} LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc ~sparc x86" + +src_prepare() { + default + eautoreconf +}