blob: 2b06f2510e4a10c57f7e921b40257af6aefeff52 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowlab/windowlab-1.30.ebuild,v 1.6 2007/07/22 04:07:50 omp Exp $
IUSE=""
DESCRIPTION="WindowLab is a small and simple window manager of novel design."
HOMEPAGE="http://www.nickgravgaard.com/windowlab/"
SRC_URI="http://www.nickgravgaard.com/${PN}/${P}.tar"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
RDEPEND="x11-libs/libXext"
DEPEND="${RDEPEND}
x11-proto/xextproto"
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
dobin windowlab
newman windowlab.1x windowlab.1
dodoc CHANGELOG README
dodir /etc/X11/windowlab
insinto /etc/X11/windowlab
newins menurc.sample menurc
dodir /etc/X11/Sessions
echo "/usr/bin/${PN}" > ${D}/etc/X11/Sessions/${PN}
fperms a+x /etc/X11/Sessions/${PN}
}
|