blob: 4c7c37890747e22fcebf35421ea2fa9700b526ef (
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-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="a dockapp cpu monitor with spinning 3d objects"
HOMEPAGE="http://linux-bsd-unix.strefa.pl/index.en.html"
# Upstream: http://linux-bsd-unix.strefa.pl/${P}.tar.gz
# Mirrored for bug #641686 (invalid gzip server config)
SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~mips ~ppc ppc64 ~sparc x86"
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXext
x11-libs/libXpm"
DEPEND="${RDEPEND}"
DOCS=(
"${WORKDIR}"/${P}/CHANGES
"${WORKDIR}"/${P}/README
)
S="${WORKDIR}/${P}/wmcube"
src_prepare() {
default
pushd "${WORKDIR}"/${P} || die
eapply "${FILESDIR}"/${P}-gcc-10.patch
}
src_compile() {
emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin ${PN}
einstalldocs
doman ${PN}.1
insinto /usr/share/${PN}
doins "${WORKDIR}"/${P}/3D-objects/*.wmc
}
|