blob: 40951cbf8fa3a59edae83b64e671ba6029208ec3 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbrb/bbrb-0.4.1.ebuild,v 1.11 2003/12/04 16:45:38 tseng Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Background manager for blackbox/fluxbox/openbox"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://bbrb.sourceforge.net"
DEPEND="=x11-libs/gtk+-1.2*
media-libs/imlib"
RDEPEND="media-gfx/xv
x11-terms/eterm
virtual/blackbox"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
src_install () {
einstall || die
}
pkg_postinst() {
( [ -f /usr/bin/fluxbox ] || [ -f /usr/bin/openbox ] ) && ( \
einfo "Please see http://bbrb.sf.net to make this work with"
einfo "fluxbox/openbox"
)
}
|