summaryrefslogtreecommitdiff
blob: bab62de5eb7231a9a73fbe6d3a550abd78cf584b (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit toolchain-funcs

DESCRIPTION="A tiny window manager created as an exercise in minimalism."
HOMEPAGE="http://incise.org/index.cgi/TinyWM"
SRC_URI="http://incise.org/files/dev/${P}.tgz"

LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="x11-libs/libX11"
RDEPEND="${DEPEND}"

src_compile() {
	$(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} ${PN}.c -lX11 || die
}

src_install() {
	dobin ${PN}
	dodoc README tinywm.py
}