blob: 42757477e346668df4c9c606c9cd1ddb46028542 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="IAX (Inter Asterisk eXchange) Library"
HOMEPAGE="https://www.asterisk.org/"
SRC_URI="https://downloads.asterisk.org/pub/telephony/libiax/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug snomhack"
PATCHES=(
"${FILESDIR}/${PV}-debug.patch"
"${FILESDIR}/${PV}-memset.patch"
"${FILESDIR}/${PV}-sandbox.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_enable debug extreme-debug) \
$(use_enable snomhack)
}
|