blob: 1199ba5c7cad258a0b7db2c9843e98dd8ff7c1f1 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic multilib toolchain-funcs
MY_P="wmii+ixp-${PV}"
DESCRIPTION="A dynamic window manager for X11"
HOMEPAGE="https://github.com/0intro/wmii"
SRC_URI="http://dl.suckless.org/wmii/${MY_P}.tbz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
DEPEND="
media-libs/freetype
>=sys-libs/libixp-0.5_p20110208-r3
x11-libs/libXext
x11-libs/libXft
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
x11-libs/libX11"
RDEPEND="${DEPEND}
media-fonts/font-misc-misc
x11-apps/xmessage
x11-apps/xsetroot"
BDEPEND="virtual/pkgconfig"
S="${WORKDIR}/${MY_P}"
DOCS=( NEWS NOTES README TODO )
# Force dynamic linking, bug #273332
MAKEOPTS="${MAKEOPTS} STATIC= -j1"
src_prepare() {
default
mywmiiconf=(
PREFIX=/usr
DOC=/usr/share/doc/${PF}
ETC=/etc
LIBDIR=/usr/$(get_libdir)
CC="$(tc-getCC) -c"
LD="$(tc-getCC)"
AR="$(tc-getAR) crs"
DESTDIR="${D}"
LIBIXP=/usr/$(get_libdir)/libixp.so
)
# punt internal copy of sys-libs/libixp #323037
rm include/ixp{,_srvutil}.h || die
sed -i -e '/libixp/d' Makefile || die
sed -i -e "/BINSH \!=/d" mk/hdr.mk || die #335083
sed -i -e 's/-lXext/& -lXrender -lX11/' cmd/Makefile || die #369115
}
src_configure() {
append-flags -fcommon
default
}
src_compile() {
append-flags -I/usr/include/freetype2
emake "${mywmiiconf[@]}"
}
src_install() {
emake "${mywmiiconf[@]}" install
echo "${PN}" > "${T}/${PN}" || die
exeinto /etc/X11/Sessions
doexe "${T}/${PN}"
insinto /usr/share/xsessions
doins "${FILESDIR}"/${PN}.desktop
}
|