blob: 927eed3336a7e4ed42d3c660d7ff0a527c6e28fd (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmi/wmi-7.ebuild,v 1.4 2004/06/24 23:46:33 agriffis Exp $
DESCRIPTION="WMI is a new window manager for X11, which combines the best features of larswm, ion, evilwm and ratpoison into one window manager."
HOMEPAGE="http://wmi.berlios.de/"
SRC_URI="http://download.berlios.de/wmi/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND="virtual/x11
dev-libs/STLport"
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
docinto examples
dodoc examples/*
docinto themes
dodoc examples/themes/*
echo -e "#!/bin/sh\n/usr/bin/wmi" > ${T}/wmi
exeinto /etc/X11/Sessions
doexe ${T}/wmi
}
|