blob: f5e58ff5b3e56c4f41be07d6c3d1b4920457f067 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/kphone/kphone-4.1.0.ebuild,v 1.5 2007/07/12 02:52:15 mr_bones_ Exp $
inherit eutils kde
DESCRIPTION="A SIP user agent for Linux, with which you can initiate VoIP connections over the Internet."
HOMEPAGE="http://www.wirlab.net/kphone/index.html"
SRC_URI="http://www.wirlab.net/kphone/${P}.tar.gz"
KEYWORDS="x86 ~amd64 sparc ~ppc"
LICENSE="GPL-2"
IUSE="alsa jack"
SLOT="0"
S=${WORKDIR}/kphone
DEPEND="alsa? ( media-libs/alsa-lib )
jack? ( media-sound/jack-audio-connection-kit )"
need-kde 3
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-Makefiles.patch
}
src_compile(){
# Fix for our kde location
myconf="$myconf --with-extra-libs=$KDEDIR/lib --prefix=/usr `use_enable alsa` `use_enable jack`"
econf ${myconf} || die "econf failed"
emake
}
|