blob: c0cee8850f7d22456dff1a20a0c7f452409d338d (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="a simple X property utility"
HOMEPAGE="https://tools.suckless.org/x/sprop"
SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
x11-libs/libX11
"
DEPEND="
${RDEPEND}
x11-base/xorg-proto
"
src_prepare() {
sed -i \
-e '/^CC/d' \
-e '/^CFLAGS/s| =| +=|;s| -Os||g' \
-e '/^LDFLAGS/s|= -s|+=|g' \
config.mk || die
sed -i \
-e 's|@${CC}|$(CC)|g' \
Makefile || die
sed -i \
-e "s|VERSION|${PV}|g" \
${PN}.1 || die
default
tc-export CC
}
src_compile() { emake sprop; }
src_install() {
dobin ${PN}
doman ${PN}.1
}
|