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

EAPI="2"

inherit git multilib

DESCRIPTION="An improved dynamic tiling window manager"
HOMEPAGE="http://i3.zekjur.net/"
SRC_URI=""
EGIT_REPO_URI="git://code.stapelberg.de/i3"
EGIT_BRANCH="next"

LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE="debug doc"

RDEPEND=">=x11-libs/libxcb-1.1.93
	>=x11-libs/xcb-util-0.3.3
	x11-libs/libX11
	dev-libs/libev"
DEPEND="${RDEPEND}
	>=x11-proto/xcb-proto-1.3
	>=app-text/asciidoc-8.3
	app-text/xmlto
	app-text/docbook-xml-dtd"

src_prepare() {
	use debug || { sed -i -e "s:DEBUG=1:DEBUG=0:" common.mk || die "sed die - debug" ; }
	sed -i \
		-e "s:/usr/local/include:/usr/include:" \
		-e "s:/usr/local/lib:/usr/$(get_libdir):" \
		common.mk || die "sed die"
}

src_compile() {
	emake || die "emake compile die"
	emake -C man || die "emake man die"
	use doc && { emake -C docs || die "emake docs die" ; }
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install die"
	dodoc GOALS TODO CMDMODE || die "dodoc die"
	doman man/i3.1 man/i3-msg.1 || die "doman die"
	if use doc; then
		dohtml -r docs/*.html || die "dohtml die"
		elog "Documentation in html is in /etc/share/doc/${P}"
	fi
}