blob: 9cbd9d6ad2091a897518970ec088f16ff0a257ce (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="WindowMaker CPU and Memory Usage Monitor Dock App"
HOMEPAGE="https://www.geocities.ws/neofpo/wmcms.html"
SRC_URI="https://www.geocities.ws/neofpo/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
DEPEND=">=x11-libs/libdockapp-0.7:="
PATCHES=(
"${FILESDIR}"/${P}-s4t4n.patch
"${FILESDIR}"/${P}-c99.patch
)
src_compile() {
tc-export CC
default
}
src_install() {
dobin wmcms
}
|