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 170501382C5 for ; Thu, 3 Jun 2021 12:33:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F14ADE0878; Thu, 3 Jun 2021 12:33:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0596AE0872 for ; Thu, 3 Jun 2021 12:33:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 56FF5340D28 for ; Thu, 3 Jun 2021 12:33:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 827A479F for ; Thu, 3 Jun 2021 12:33:07 +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: <1622723579.c212bd5f4c7c04f802d025be24968f3d434b6c97.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/fbpager/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/fbpager/fbpager-20090221-r2.ebuild X-VCS-Directories: x11-misc/fbpager/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: c212bd5f4c7c04f802d025be24968f3d434b6c97 X-VCS-Branch: master Date: Thu, 3 Jun 2021 12:33:07 +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: d23d7333-0f8f-4146-8d2f-ee35090ee25e X-Archives-Hash: 2bf0744e6cb274b7d63d9830f7f94227 commit: c212bd5f4c7c04f802d025be24968f3d434b6c97 Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Thu Jun 3 10:25:53 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Jun 3 12:32:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c212bd5f x11-misc/fbpager: EAPI bump, revbump. Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> Closes: https://github.com/gentoo/gentoo/pull/20809 Signed-off-by: Joonas Niilola gentoo.org> x11-misc/fbpager/fbpager-20090221-r2.ebuild | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/x11-misc/fbpager/fbpager-20090221-r2.ebuild b/x11-misc/fbpager/fbpager-20090221-r2.ebuild new file mode 100644 index 00000000000..6980614a462 --- /dev/null +++ b/x11-misc/fbpager/fbpager-20090221-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic + +DESCRIPTION="A Pager for fluxbox" +HOMEPAGE="http://git.fluxbox.org/fbpager.git/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86" +IUSE="+xrender" + +DEPEND="x11-libs/libX11 + xrender? ( x11-libs/libXrender )" +RDEPEND="${DEPEND}" + +src_prepare() { + append-cxxflags "-std=c++14" + + default +} + +src_configure() { + econf $(use_enable xrender) +} + +pkg_postinst() { + einfo "To run fbpager inside the FluxBox slit, use fbpager -w" +}