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 03C3F139694 for ; Sun, 26 Mar 2017 17:15:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44FD621C190; Sun, 26 Mar 2017 17:15:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1F5F321C190 for ; Sun, 26 Mar 2017 17:15:32 +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 393B633BF1C for ; Sun, 26 Mar 2017 17:15:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3F3B70B7 for ; Sun, 26 Mar 2017 17:15:29 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1490548502.1f7dd01e3e4751d199c583494050a3b063005567.mjo@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.ebuild X-VCS-Directories: x11-misc/fbpager/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 1f7dd01e3e4751d199c583494050a3b063005567 X-VCS-Branch: master Date: Sun, 26 Mar 2017 17:15:29 +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: 5da30158-77c0-445a-82fd-1e8372ee4e36 X-Archives-Hash: e4bb6f6d735da97c8513a3db66b1ea6c commit: 1f7dd01e3e4751d199c583494050a3b063005567 Author: Michael Orlitzky gentoo org> AuthorDate: Sun Mar 26 17:15:02 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Mar 26 17:15:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f7dd01e x11-misc/fbpager: remove unused version 20090221. Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-misc/fbpager/fbpager-20090221.ebuild | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/x11-misc/fbpager/fbpager-20090221.ebuild b/x11-misc/fbpager/fbpager-20090221.ebuild deleted file mode 100644 index be33b554142..00000000000 --- a/x11-misc/fbpager/fbpager-20090221.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 -inherit eutils - -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 ~x86-fbsd" -IUSE="+xrender" - -DEPEND="x11-libs/libX11 - xrender? ( x11-libs/libXrender )" -RDEPEND="${DEPEND}" - -src_configure() { - econf $(use_enable xrender) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS NEWS README TODO -} - -pkg_postinst() { - einfo "To run fbpager inside the FluxBox slit, use fbpager -w" -}