blob: 92206a4b263b2507602bf615ed2cc7a5ba18a209 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/openbox/openbox-3.0_alpha4.ebuild,v 1.1 2003/08/02 10:55:14 seemant Exp $
IUSE="nls"
S=${WORKDIR}/${P/_/-}
DESCRIPTION="Openbox is a standards compliant, fast, light-weight, extensible window manager."
HOMEPAGE="http://icculus.org/openbox/"
SRC_URI="http://icculus.org/openbox/releases/${P/_/-}.tar.gz"
DEPEND="virtual/x11"
SLOT="3"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips"
src_compile() {
econf `use_enable nls` \
--program-suffix="3" || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc README AUTHORS ChangeLog TODO
}
|