You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-wm/herbstluftwm/herbstluftwm-9999.ebuild

62 lines
1.5 KiB

# Copyright 1999-2012 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.5 2012/06/17 07:06:45 radhermit Exp $
EAPI=4
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 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
}