blob: 73aee53dfa77c75f689dfd172adbefd1e5cbd63c (
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
37
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header
inherit commonbox
S=${WORKDIR}/${P}
DESCRIPTION="Window manager based on BlackBox"
SRC_URI="http://icculus.org/${PN}/releases/${P}.tar.gz"
HOMEPAGE="http://icculus.org/${PN}"
SLOT="1"
LICENSE="BSD"
KEYWORDS="x86 sparc "
DEPEND="$DEPEND"
MYBIN="${PN}"
mydoc="CHANGE* TODO LICENSE data/README*"
myconf="--enable-xinerama"
BOOTSTRAP="1"
src_unpack() {
unpack ${A}
ssed -i "s:XftValueList:FcValueList:" \
${S}/util/xftlsfonts.cc
}
src_install() {
commonbox_src_install
mv ${D}/usr/share/commonbox/openbox/epistrc \
${D}/usr/share/commonbox/epistrc.default
rmdir ${D}/usr/share/commonbox/openbox
}
|