blob: 006e0b543d2e131882e00ea4c929b73f3a453066 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="list window names"
HOMEPAGE="https://tools.suckless.org/x/lsw"
SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~ppc64 ~x86"
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
src_prepare() {
default
sed -i config.mk \
-e '/^CC/d' \
-e '/^CFLAGS/{s| -Os||;s|=|+=|}' \
-e '/^LDFLAGS/{s|=|+=|;s| -s||}' || die
sed -i \
-e 's|^\t@|\t|g' \
-e '/^\techo/d' \
Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
doman ${PN}.1
dobin ${PN}
}
|