blob: 7fd3e1233d79374e60339805ba1f99b35b368d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fbpager/fbpager-0.1.4.ebuild,v 1.11 2006/12/07 02:13:14 flameeyes Exp $
inherit eutils
DESCRIPTION="A Pager for fluxbox"
HOMEPAGE="http://fluxbox.sourceforge.net/fbpager"
SRC_URI="http://fluxbox.org/download/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~mips ppc ~sparc x86 ~x86-fbsd"
IUSE=""
DEPEND="x11-libs/libXrender
x11-libs/libSM
x11-libs/libXt"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-gcc41.patch"
}
src_install() {
einstall || die "einstall failed"
dodoc AUTHORS NEWS README TODO
}
pkg_postinst() {
einfo
einfo "To run fbpager inside the FluxBox slit, use fbpager -w"
einfo
}
|