blob: 39e7b9d04ab954806cf0e65d9bd02751c83e9819 (
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
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Shows currently transmitting beacons of the International Beacon Project (IBP)"
HOMEPAGE="http://www.pa3fwm.nl/software/ibp/"
SRC_URI="http://www.pa3fwm.nl/software/ibp/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="X"
RDEPEND="
sys-libs/ncurses:=
X? ( x11-libs/libX11 )"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
X? (
sys-devel/gcc
>=x11-misc/imake-1.0.8-r1
)"
PATCHES=(
"${FILESDIR}"/${P}-clang16.patch
)
src_prepare() {
default
# Respect CFLAGS if built without USE=X
sed -i -e "s/= -D/+= -D/" Makefile || die
# Fix compile if ncurses is built with separate libtinfo
sed -i -e "s:-lcurses:$($(tc-getPKG_CONFIG) --libs ncurses):" Imakefile Makefile || die
}
src_configure() {
append-cflags -std=gnu89 # old codebase, incompatible with c2x
if use X ;then
CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
IMAKECPP="${IMAKECPP:-${CHOST}-gcc -E}" xmkmf || die
fi
}
src_compile() {
if use X ; then
emake \
CC="$(tc-getCC)" \
LOCAL_LDFLAGS="${LDFLAGS}" \
CDEBUGFLAGS="${CFLAGS}"
else
emake CC="$(tc-getCC)"
fi
}
src_install() {
dobin ${PN}
doman ${PN}.1
}
|