blob: a9f99e8c0db50ee000a2c04fe37cfc22939a1b66 (
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-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Window Manager From Scratch, A tiling window manager highly configurable"
HOMEPAGE="https://github.com/xorg62/wmfs"
SRC_URI="https://dev.gentoo.org/~jsmolic/distfiles/${P}.tar.xz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+imlib2 +xinerama"
RDEPEND="
media-libs/freetype
media-libs/imlib2[X]
x11-libs/libX11
x11-libs/libXft
x11-libs/libXinerama
x11-libs/libXrandr
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
elibc_musl? ( sys-libs/queue-standalone )
"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PN}-99999999-Debian.patch
"${FILESDIR}"/${PN}-99999999-desktop.patch
"${FILESDIR}"/${PN}-99999999-fno-common.patch
"${FILESDIR}"/${PN}-99999999-strncat.patch
)
DOCS=(
README
scripts/keybind_help.sh
scripts/status.sh
)
src_configure() {
tc-export CC
# not autotools based
local ECHO
for ECHO in echo ''; do
${ECHO} sh configure \
$(usex xinerama '' --without-xinerama) \
$(usex imlib2 '' --without-imlib2) \
--prefix /usr \
--man-prefix /usr/share/man \
--xdg-config-dir /etc/xdg \
|| die
done
}
|