diff options
author | Harri Nieminen <moikkis@gmail.com> | 2017-02-06 10:55:05 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-02-06 23:46:09 +0100 |
commit | 370933b3a505d79061f9eb84adae77f1fa8b8181 (patch) | |
tree | 4bc029d74baf1213528d356575902f342dbddad2 /x11-misc/fbpager | |
parent | x11-misc/apwal: EAPI bump 2 -> 6 (diff) | |
download | gentoo-370933b3a505d79061f9eb84adae77f1fa8b8181.tar.gz gentoo-370933b3a505d79061f9eb84adae77f1fa8b8181.tar.bz2 gentoo-370933b3a505d79061f9eb84adae77f1fa8b8181.zip |
x11-misc/fbpager: EAPI bump 2 -> 6
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3839
Diffstat (limited to 'x11-misc/fbpager')
-rw-r--r-- | x11-misc/fbpager/fbpager-20090221-r1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/x11-misc/fbpager/fbpager-20090221-r1.ebuild b/x11-misc/fbpager/fbpager-20090221-r1.ebuild new file mode 100644 index 000000000000..34e1708dc64d --- /dev/null +++ b/x11-misc/fbpager/fbpager-20090221-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +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) +} + +pkg_postinst() { + einfo "To run fbpager inside the FluxBox slit, use fbpager -w" +} |