blob: 24e53cb3ee4e6e6b2dd651c7c7c10186af7106f4 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/waimea/waimea-0.4.0-r1.ebuild,v 1.1 2003/06/22 23:23:50 vapier Exp $
inherit eutils
DESCRIPTION="Window manager based on BlackBox"
SRC_URI="http://www.waimea.org/files/stable/source/${P}.tar.bz2
cjk? ( http://www.kasumi.sakura.ne.jp/~zoe/tdiary/patch/${P}-ja.patch )"
HOMEPAGE="http://www.waimea.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ~ppc"
IUSE="truetype xinerama cjk"
DEPEND="virtual/x11
media-libs/imlib2
virtual/xft"
PROVIDE="virtual/blackbox"
src_unpack() {
unpack ${A}
cd ${S}
use cjk && epatch ${DISTDIR}/${P}-ja.patch
}
src_compile() {
econf \
`use_enable xinerama` \
`use_enable truetype xft` \
--enable-shape \
--enable-render \
--enable-randr \
--enable-pixmap \
|| die
emake || die
}
src_install() {
einstall sysconfdir=${D}/etc/X11/waimea || die
dodoc ChangeLog AUTHORS COPYING INSTALL README TODO NEWS
exeinto /etc/X11/Sessions
echo "/usr/bin/waimea" > waimea
doexe waimea
}
pkg_postinst() {
einfo "Please read the README in /usr/share/doc/${PF}"
einfo "for info on setting up and configuring waimea"
}
|