aboutsummaryrefslogtreecommitdiff
blob: 0e99f326b23784a10b81bd5f2494f93b7f485c6b (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
56
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="4"

EGIT_REPO_URI="git://git.merovius.de/i3bar"
: ${EGIT_BRANCH:=tree}

inherit base multilib git-2

DESCRIPTION="An xcb-based status- and ws-bar for i3"
HOMEPAGE="http://i3.zekjur.net/tree/"
SRC_URI=""

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="debug +man"

RDEPEND="
	>=x11-libs/libxcb-1.1.93
	>=x11-libs/xcb-util-0.3.3
	|| (
		<x11-libs/xcb-util-0.3.8
		(
			>=x11-libs/xcb-util-0.3.8
			>=x11-libs/xcb-util-keysyms-0.3.8
			>=x11-libs/xcb-util-wm-0.3.8
		)
	)
	x11-libs/libX11
	dev-libs/libev
	dev-libs/yajl
	"
DEPEND="${RDEPEND}
	>=x11-proto/xcb-proto-1.3
	man? (
		>=app-text/asciidoc-8.3
		app-text/xmlto
	)
	"

src_prepare() {
	use debug || { sed -i -e "s:DEBUG=1:DEBUG=0:" common.mk || die "sed die - debug" ; }
}

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

src_install() {
	emake DESTDIR="${D}" install
	use man && doman doc/*.1
}