blob: a56122cd1bd2c7cca5dd487d3ece880138efc045 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/twinkle/twinkle-0.8.ebuild,v 1.3 2006/07/29 14:37:08 dragonheart Exp $
inherit eutils qt3 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 ~x86"
IUSE="arts speex"
# Requires libqt-mt actually... Is that *always* built, or do we need to check?
RDEPEND=">=net-libs/ccrtp-1.3.4
>=x11-libs/qt-3.3.4-r6
>=dev-cpp/commoncpp2-1.4.1
arts? ( kde-base/arts )
media-libs/libsndfile
dev-libs/boost
speex? ( media-libs/speex )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd ${S}
epatch "${FILESDIR}"/${PN}-0.4.1-badcflags.patch
epatch "${FILESDIR}"/${P}-autoconfspeex.patch
eautoreconf
}
src_compile() {
econf --disable-qt-check \
--with-ilbc \
$(use_with arts) \
$(use_with speex) || die 'Error: conf failed'
emake || die "Error: emake failed!"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS README THANKS
}
|