blob: f374bfa2fc7ad4c536f3aa94f3e386e682a17034 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..10} )
DISTUTILS_OPTIONAL=1
inherit cmake distutils-r1 toolchain-funcs
DESCRIPTION="A manual tiling window manager for X"
HOMEPAGE="https://herbstluftwm.org/"
if [[ "${PV}" == "9999" ]] || [[ -n "${EGIT_COMMIT_ID}" ]]; then
EGIT_REPO_URI="https://github.com/herbstluftwm/herbstluftwm"
inherit git-r3
else
SRC_URI="https://herbstluftwm.org/tarballs/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="BSD-2"
SLOT="0"
IUSE="+doc python"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
DEPEND="
media-libs/freetype
x11-libs/libX11
x11-libs/libXext
x11-libs/libXft
x11-libs/libXinerama
x11-libs/libXrandr
"
RDEPEND="
${DEPEND}
app-shells/bash
python? ( ${PYTHON_DEPS} )
"
BDEPEND="
${PYTHON_DEPS}
virtual/pkgconfig
"
if [[ -n "${EGIT_REPO_URI}" ]]; then
# Herbstluftwm tarballs ship with pre-compiled documentation, only
# if we build from git asciidoc is needed.
BDEPEND+=" doc? ( app-text/asciidoc )"
fi
src_prepare() {
# Do not install LICENSE and respect CMAKE_INSTALL_DOCDIR.
sed -i \
-e '/^install.*LICENSEDIR/d' \
-e '/set(DOCDIR / s#.*#set(DOCDIR ${CMAKE_INSTALL_DOCDIR})#' \
CMakeLists.txt || die
cmake_src_prepare
if use python; then
pushd "${S}"/python > /dev/null || die
distutils-r1_src_prepare
popd > /dev/null || die
fi
}
src_configure() {
# Ensure that 'python3' is in PATH. #765118
python_setup
mycmakeargs=(
-DWITH_DOCUMENTATION=$(usex doc)
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
if use python; then
pushd python > /dev/null || die
distutils-r1_src_compile
popd >/dev/null || die
fi
}
src_install() {
cmake_src_install
if ! use doc; then
rm -r "${ED}"/usr/share/doc/${PF}/examples || die
fi
if use python; then
pushd python > /dev/null || die
distutils-r1_src_install
popd > /dev/null || die
fi
# The man pages exists in src_install either in non-live ebuilds,
# since they are then shipped pre-compiled in herbstluftwm's
# release tarbal. Or they exist in live ebuilds if the 'doc' USE
# flag is enabled.
if [[ "${PV}" != 9999 ]] || use doc; then
local man_pages=(
herbstluftwm.1
herbstclient.1
herbstluftwm-tutorial.7
)
for man_page in "${man_pages[@]}"; do
doman "doc/${man_page}"
done
fi
}
|