blob: 49cd3292f361698cbf568a594ac18ebb1e79c17d (
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
57
58
59
60
61
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/herbstluftwm/herbstluftwm-9999.ebuild,v 1.6 2013/01/02 03:13:42 radhermit Exp $
EAPI=5
inherit toolchain-funcs bash-completion-r1 git-2
EGIT_REPO_URI="git://git.informatik.uni-erlangen.de/re06huxa/herbstluftwm"
DESCRIPTION="A manual tiling window manager for X"
HOMEPAGE="http://wwwcip.cs.fau.de/~re06huxa/herbstluftwm/"
SRC_URI=""
LICENSE="BSD-2"
SLOT="0"
KEYWORDS=""
IUSE="examples xinerama zsh-completion"
CDEPEND=">=dev-libs/glib-2.24:2
x11-libs/libX11
xinerama? ( x11-libs/libXinerama )"
RDEPEND="${CDEPEND}
app-shells/bash
zsh-completion? ( app-shells/zsh )"
DEPEND="${CDEPEND}
app-text/asciidoc
virtual/pkgconfig"
src_compile() {
emake CC="$(tc-getCC)" LD="$(tc-getCC)" COLOR=0 VERBOSE= \
$(use xinerama || echo XINERAMAFLAGS= XINERAMALIBS= )
}
src_install() {
dobin herbstluftwm herbstclient
dodoc BUGS MIGRATION NEWS README
doman doc/{herbstluftwm,herbstclient}.1
exeinto /etc/xdg/herbstluftwm
doexe share/{autostart,panel.sh,restartpanels.sh}
insinto /usr/share/xsessions
doins share/herbstluftwm.desktop
newbashcomp share/herbstclient-completion herbstclient
if use zsh-completion ; then
insinto /usr/share/zsh/site-functions
doins share/_herbstclient
fi
if use examples ; then
exeinto /usr/share/doc/${PF}/examples
doexe scripts/*.sh
docinto examples
dodoc scripts/README
docompress -x /usr/share/doc/${PF}/examples
fi
}
|