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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 81BBD158042 for ; Thu, 31 Oct 2024 15:31:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D63BE0899; Thu, 31 Oct 2024 15:31:14 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63392E0899 for ; Thu, 31 Oct 2024 15:31:14 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F286343128 for ; Thu, 31 Oct 2024 15:31:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBF1A1A44 for ; Thu, 31 Oct 2024 15:31:11 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1730388664.20fb18953ed416d90640dbbf7568b305d724e6d2.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/bblaunch/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/bblaunch/bblaunch-0.0.3-r1.ebuild X-VCS-Directories: x11-misc/bblaunch/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 20fb18953ed416d90640dbbf7568b305d724e6d2 X-VCS-Branch: master Date: Thu, 31 Oct 2024 15:31:11 +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: cf06c914-9525-43ab-9418-ef5db80b2fce X-Archives-Hash: 706e5fdc7f146924de6db14a8cb8ce1d commit: 20fb18953ed416d90640dbbf7568b305d724e6d2 Author: Ben Kohler gentoo org> AuthorDate: Thu Oct 31 15:26:11 2024 +0000 Commit: Ben Kohler gentoo org> CommitDate: Thu Oct 31 15:31:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20fb1895 x11-misc/bblaunch: bump EAPI, add missing libX11 dep, fix configure on gcc >=14 Closes: https://bugs.gentoo.org/928489 Closes: https://bugs.gentoo.org/942581 Signed-off-by: Ben Kohler gentoo.org> x11-misc/bblaunch/bblaunch-0.0.3-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/x11-misc/bblaunch/bblaunch-0.0.3-r1.ebuild b/x11-misc/bblaunch/bblaunch-0.0.3-r1.ebuild new file mode 100644 index 000000000000..45d044ab257b --- /dev/null +++ b/x11-misc/bblaunch/bblaunch-0.0.3-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit autotools + +DESCRIPTION="An application launcher for Blackbox type window managers" +HOMEPAGE="http://blackboxwm.sourceforge.net/" +SRC_URI="http://www.stud.ifi.uio.no/~steingrd/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~x86" + +RDEPEND="x11-libs/libX11" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${P}.patch" ) + +src_prepare() { + default + eautoreconf +}