blob: 38018a3a62fa5f1648b30bdb01c4db23b784aca1 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils flag-o-matic
DESCRIPTION="small command line tool for testing SIP applications and devices"
HOMEPAGE="https://sourceforge.net/projects/sipsak.berlios/"
SRC_URI="mirror://sourceforge/sipsak.berlios/${P/_p/-}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
IUSE="gnutls"
RDEPEND="gnutls? ( net-libs/gnutls )
net-dns/c-ares"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${P/_p1}
src_prepare() {
epatch "${FILESDIR}/${PV}-callback.patch"
}
src_configure() {
append-cflags -std=gnu89
econf \
$(use_enable gnutls)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|