commit:     cdbe01c0bedc0888cbbeb462231e311262c70a34
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  2 05:33:53 2019 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Tue Jul  2 05:33:53 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdbe01c0

x11-wm/bspwm: fix docs install

Closes: https://bugs.gentoo.org/689052

Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>

 x11-wm/bspwm/bspwm-0.9.7-r1.ebuild | 45 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/x11-wm/bspwm/bspwm-0.9.7-r1.ebuild 
b/x11-wm/bspwm/bspwm-0.9.7-r1.ebuild
new file mode 100644
index 00000000000..484d61f26f2
--- /dev/null
+++ b/x11-wm/bspwm/bspwm-0.9.7-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit toolchain-funcs
+
+DESCRIPTION="Tiling window manager based on binary space partitioning"
+HOMEPAGE="https://github.com/baskerville/bspwm/";
+SRC_URI="https://github.com/baskerville/bspwm/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples"
+
+DEPEND="
+       x11-libs/libxcb
+       x11-libs/xcb-util
+       x11-libs/xcb-util-wm
+"
+RDEPEND="${DEPEND}
+       x11-misc/sxhkd
+"
+
+src_compile() {
+       emake PREFIX=/usr CC="$(tc-getCC)"
+}
+
+src_install() {
+       emake DESTDIR="${D}" PREFIX=/usr DOCPREFIX="/usr/share/doc/${PF}" 
install
+
+       exeinto /etc/X11/Sessions
+       newexe "${FILESDIR}"/${PN}-session ${PN}
+
+       insinto /usr/share/xsessions
+       doins contrib/freedesktop/bspwm.desktop
+
+       insinto /etc/xdg/sxhkd
+       doins examples/sxhkdrc
+
+       if use examples ; then
+               dodoc -r examples
+               docompress -x /usr/share/doc/${PF}/examples
+       fi
+}

Reply via email to