blob: 60322a6fe4ae9e82ad88fd7f5c655be2591dbc39 (
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
55
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit toolchain-funcs
DESCRIPTION="Simple EWMH compatible window manager with titlebars and frames"
HOMEPAGE="http://squidjam.com/matwm/"
SRC_URI="http://squidjam.com/matwm/pub/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug xft xinerama"
RDEPEND="
x11-libs/libXext
x11-libs/libX11
debug? ( x11-proto/xproto )
xft? ( x11-libs/libXft )
xinerama? ( x11-libs/libXinerama )
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
x11-proto/xextproto
xinerama? ( x11-proto/xineramaproto )
"
src_configure() {
# configure is not autotools based
# --disable-shape left out because the code is broken
./configure \
$( use debug && echo --enable-debug ) \
$( use xft || echo --disable-xft ) \
$( use xinerama || echo --disable-xinerama ) \
|| die
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
dobin ${PN}
doman ${PN}.1
dodoc BUGS ChangeLog default_matwmrc README TODO
insinto /usr/share/xsessions
doins "${FILESDIR}"/${PN}.desktop
echo ${PN} > "${T}"/${PN}
exeinto /etc/X11/Sessions
doexe "${T}"/${PN}
}
|