blob: d56b961c70d315804b6718ea916ae634381ae042 (
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
61
62
63
64
65
66
67
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/twinkle-1.2-r1.ebuild,v 1.3 2008/08/22 23:41:37 dragonheart Exp $
EAPI=1
ARTS_REQUIRED="never"
inherit eutils qt3 kde autotools
DESCRIPTION="a soft phone for your VOIP communcations using SIP"
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="arts speex ilbc zrtp kdehiddenvisibility"
# Requires libqt-mt actually... Is that *always* built, or do we need to check?
RDEPEND=">=net-libs/ccrtp-1.5.0
>=dev-cpp/commoncpp2-1.4.2
x11-libs/qt: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"
pkg_setup() {
if use speex && has_version '~media-libs/speex-1.2_beta2' &&
! built_with_use 'media-libs/speex' 'wideband' ; then
eerror "You need to build media-libs/speex with USE=wideband enabled."
die "Speex w/o wideband-support detected."
fi
}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-zrtp.patch
cd "${S}"
eautoreconf
}
src_compile() {
local myconf=" \
$(use_with ilbc) \
$(use_with arts) \
$(use_with zrtp) \
$(use_with speex)"
set-kdedir
kde_src_compile
}
src_install() {
kde_src_install
dodoc THANKS
domenu twinkle.desktop
}
pkg_postinst() {
elog "if you get crashes on startup re-emerge commoncpp2 ccrtp and twinkle"
elog "see http://www.xs4all.nl/~mfnboer/twinkle/faq.html#crash_startup"
kde_pkg_postinst
}
|