blob: f31911da914dc91d677e7f4a164ebe48bf07ca57 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header :$
S=${WORKDIR}/${P}
DESCRIPTION="A set of themes for Openbox3."
SRC_URI="mirror://gentoo/${P}.tar.gz"
HOMEPAGE="http://home.clara.co.uk/dpb/openbox.htm"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE=""
SLOT="0"
DEPEND=">=x11-wm/openbox-3.0_beta2"
src_compile() {
local myconf
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|