blob: 5bf1e2e561ecf29c6b4d1ca6d3569d2a1d402a81 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/obconf/obconf-1.1.ebuild,v 1.1 2003/09/15 15:16:03 tseng Exp $
S=${WORKDIR}/${P}
DESCRIPTION="ObConf is a tool for configuring the Openbox window manager."
SRC_URI="http://icculus.org/openbox/releases/${P}.tar.gz"
HOMEPAGE="http://icculus.org/openbox/obconf.php"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE=""
SLOT="0"
DEPEND=">=x11-libs/gtk+-2
>=gnome-base/libglade-2
>=x11-wm/openbox-3.0_beta2"
src_compile() {
local myconf
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|