blob: 34b32c4049b947234f3d28ccda199d42d100094b (
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
48
49
50
51
52
53
54
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop flag-o-matic toolchain-funcs
DESCRIPTION="Famous german card game"
HOMEPAGE="http://www.xskat.de/xskat.html"
SRC_URI="
http://www.xskat.de/${P}.tar.gz
https://dev.gentoo.org/~ionen/distfiles/${PN}.png"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
COMMON_DEPEND="x11-libs/libX11"
RDEPEND="
${COMMON_DEPEND}
media-fonts/font-misc-misc"
DEPEND="
${COMMON_DEPEND}
x11-base/xorg-proto"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-clang16.patch
)
src_configure() { :; }
src_compile() {
tc-export CC
append-cflags -std=gnu89 # old codebase, will break with c2x
local emakeargs=(
CFLAGS="${CFLAGS} ${CPPFLAGS} $($(tc-getPKG_CONFIG) --cflags x11 || die)"
CPPFLAGS= # force everywhere above, but avoid implicit duplication
LDFLAGS="${LDFLAGS} $($(tc-getPKG_CONFIG) --libs x11 || die)"
)
emake "${emakeargs[@]}"
}
src_install() {
dobin ${PN}
newman ${PN}.{man,6}
einstalldocs
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} XSkat
}
|