summaryrefslogtreecommitdiff
blob: 18f4117784c9f8808cf04bde51bbafd4352f3b12 (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools

DESCRIPTION="The Yate GSM base station"
HOMEPAGE="https://yatebts.com"
ESVN_REPO_URI="http://voip.null.ro/svn/yatebts/trunk"

LICENSE="GPL-2"
SLOT="0"
IUSE="rad1 usrp1 uhd +bladerf cpu_flags_x86_sse3 cpu_flags_x86_sse4_1"

RDEPEND="
	=net-voip/yate-${PV}:=[gsm]
	bladerf? ( net-wireless/bladerf:= )
	uhd? ( net-wireless/uhd )
	virtual/libusb:1"
DEPEND="virtual/pkgconfig
	${RDEPEND}"

if [[ ${PV} == "9999" ]] ; then
	inherit subversion
else
	KEYWORDS="~amd64 ~arm ~x86"
	SRC_URI="http://yate.null.ro/tarballs/${PN}6/yate-bts-${PV}-1.tar.gz"
	S="${WORKDIR}/yate-bts"
fi

#we need more patches or configure flags because things install in really wrong places per FHS
PATCHES=(
	"${FILESDIR}"/${PN}-sgsnggsn-inetutils-hostname-fix.diff
	"${FILESDIR}"/${PN}-5.0.0-gcc6.patch
	"${FILESDIR}"/${P}-dont-mess-with-cflags.patch
	)

src_prepare() {
	default
	eautoreconf
}

#		$(use_enable rad1) \
#		$(use_enable usrp1) \
#		$(use_enable uhd) \
#		$(use_enable bladerf) \
src_configure() {
	econf \
		$(use_enable cpu_flags_x86_sse3 sse3) \
		$(use_enable cpu_flags_x86_sse4_1 sse41)

}