blob: 2c02c7e74c7caf4f59353f59cea6d74be54f2591 (
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
|
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop multilib savedconfig toolchain-funcs git-r3 autotools
DESCRIPTION="Suckless Status Tool"
HOMEPAGE="https://tools.suckless.org/slstatus/"
EGIT_REPO_URI="https://git.suckless.org/slstatus"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
IUSE="savedconfig"
RDEPEND="
x11-libs/libX11
x11-libs/libXft
"
DEPEND="${RDEPEND}
virtual/pkgconfig
x11-base/xorg-proto
"
src_prepare() {
default
restore_config config.h
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
dodoc README
save_config config.h
}
|