blob: c924ad277e188a45b3137b9950538e4f413ad351 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
MY_P="${P/_/-}"
DESCRIPTION="Basic AX.25 (Amateur Radio) user tools, additional daemons"
HOMEPAGE="
https://linux-ax25.in-berlin.de/
https://packet-radio.net/ax-25/
" # NOTE: ...in-berlin.de does not work but subdomains do
SRC_URI="
https://linux-ax25.in-berlin.de/pub/${PN}/${MY_P}.tar.gz
https://ham.packet-radio.net/packet/ax25/ax25-apps/${MY_P}.tar.gz
"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND="
>=dev-libs/libax25-0.0.12_rc2
sys-libs/ncurses:=
!dev-ruby/listen
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
# fix missing prototype for malloc
sed -i -e "/^#include /i #include <stdlib.h>" ax25ipd/routing.c || die
eapply "${FILESDIR}"/${PN}-0.0.8_rc5-tinfo.patch
if use elibc_musl ; then
eapply -p1 "${FILESDIR}/${PN}-0.0.8-musl.patch"
fi
eapply_user
eautoreconf
}
src_install() {
default
newinitd "${FILESDIR}"/ax25ipd.rc ax25ipd
newinitd "${FILESDIR}"/ax25mond.rc ax25mond
newinitd "${FILESDIR}"/ax25rtd.rc ax25rtd
# HACK: one should not create instead of removing
rm -r "${ED}"/usr/share/doc/${PF} || die
dodoc AUTHORS ChangeLog NEWS README ax25ipd/README.ax25ipd \
ax25rtd/README.ax25rtd ax25ipd/HISTORY.ax25ipd ax25rtd/TODO.ax25rtd
dodir /var/lib/ax25/ax25rtd
touch "${ED}"/var/lib/ax25/ax25rtd/ax25_route || die
touch "${ED}"/var/lib/ax25/ax25rtd/ip_route || die
}
|