Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/fbpager/
Date: Mon, 06 Feb 2017 22:48:57
Message-Id: 1486421169.370933b3a505d79061f9eb84adae77f1fa8b8181.soap@gentoo
1 commit: 370933b3a505d79061f9eb84adae77f1fa8b8181
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 6 08:55:05 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 22:46:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=370933b3
7
8 x11-misc/fbpager: EAPI bump 2 -> 6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/3839
12
13 x11-misc/fbpager/fbpager-20090221-r1.ebuild | 26 ++++++++++++++++++++++++++
14 1 file changed, 26 insertions(+)
15
16 diff --git a/x11-misc/fbpager/fbpager-20090221-r1.ebuild b/x11-misc/fbpager/fbpager-20090221-r1.ebuild
17 new file mode 100644
18 index 00000000..34e1708
19 --- /dev/null
20 +++ b/x11-misc/fbpager/fbpager-20090221-r1.ebuild
21 @@ -0,0 +1,26 @@
22 +# Copyright 1999-2017 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=6
27 +
28 +DESCRIPTION="A Pager for fluxbox"
29 +HOMEPAGE="http://git.fluxbox.org/fbpager.git/"
30 +SRC_URI="mirror://gentoo/${P}.tar.bz2"
31 +
32 +LICENSE="MIT"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86 ~x86-fbsd"
35 +IUSE="+xrender"
36 +
37 +DEPEND="x11-libs/libX11
38 + xrender? ( x11-libs/libXrender )"
39 +RDEPEND="${DEPEND}"
40 +
41 +src_configure() {
42 + econf $(use_enable xrender)
43 +}
44 +
45 +pkg_postinst() {
46 + einfo "To run fbpager inside the FluxBox slit, use fbpager -w"
47 +}