blob: 2d75783571e60a24f8e162bc3ec1a4c086437aa3 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils savedconfig toolchain-funcs
DESCRIPTION="A simple dynamic window manager, with features nicked from ratpoison and dwm"
HOMEPAGE="https://launchpad.net/musca"
SRC_URI="mirror://gentoo/${P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="apis xlisten"
COMMON="x11-libs/libX11"
DEPEND="${COMMON}
sys-apps/sed"
RDEPEND="
${COMMON}
>=x11-misc/dmenu-4.4
apis? ( x11-misc/xbindkeys )
"
src_prepare() {
restore_config config.h
sed -i config.h \
-e 's:"sort | dmenu -i -b":"-i -b":g' \
-e 's:sed.*exec.*-i::g' \
|| die
epatch \
"${FILESDIR}"/${PN}-0.9.24-make.patch \
"${FILESDIR}"/${PN}-0.9.24_p20100226-dmenu-4.4.patch \
"${FILESDIR}"/${PN}-0.9.24_p20100226-null.patch \
"${FILESDIR}"/${PN}-0.9.24_p20100226-fix-cycle.patch \
"${FILESDIR}"/${PN}-0.9.24_p20100226-fix-pad.patch
local i
for i in apis xlisten; do
if ! use ${i}; then
sed -e "s|${i}||g" -i Makefile || die
fi
done
tc-export CC
}
src_install() {
dobin musca
local i
for i in xlisten apis; do
if use ${i}; then
dobin ${i}
fi
done
doman musca.1
exeinto /etc/X11/Sessions
newexe "${FILESDIR}"/${PN}.xsession musca
save_config config.h
}
|