blob: d79e41629a5b33276247f3725f0d613e0949a79a (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit autotools eutils qt3
DESCRIPTION="Softphone for VoIP communcations using SIP protocol"
HOMEPAGE="http://www.twinklephone.com/"
SRC_URI="http://www.xs4all.nl/~mfnboer/twinkle/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 x86"
IUSE="speex ilbc zrtp"
RDEPEND=">=net-libs/ccrtp-1.6.0
dev-cpp/commoncpp2
dev-qt/qt-meta:3
media-libs/libsndfile
dev-libs/boost
speex? ( media-libs/speex )
ilbc? ( dev-libs/ilbc-rfc3951 )
zrtp? ( >=net-libs/libzrtpcpp-1.3.0 )
media-libs/alsa-lib"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.4.1-kdedetect.patch
eautoreconf
}
src_configure() {
econf \
--disable-dependency-tracking \
--without-kde \
$(use_with ilbc) \
$(use_with speex) \
$(use_with zrtp) \
--without-arts
}
src_install() {
emake DESTDIR="${D}" install || die
domenu twinkle.desktop || die
dodoc AUTHORS ChangeLog NEWS README THANKS || die
}
|