blob: 5646a9edf5dadc1f59d550c06d4173d60fdda25f (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libjingle/libjingle-0.3.11-r1.ebuild,v 1.2 2009/02/08 16:13:31 klausman Exp $
EAPI="2"
inherit eutils
DESCRIPTION="Google's jabber voice extension library modified by Tapioca"
HOMEPAGE="http://tapioca-voip.sourceforge.net/"
SRC_URI="mirror://sourceforge/tapioca-voip/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~x86"
IUSE=""
RDEPEND="dev-libs/openssl
dev-libs/expat"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
# there is an error in configure.ac : CXXFLAGS are using CFLAGS
# see bug #234012
# patching directly configure to prevent executing autoconf
sed -i -e 's/CXXFLAGS="$CFLAGS/CXXFLAGS="$CXXFLAGS/' configure \
|| die "patching configure failed"
epatch "${FILESDIR}"/${P}-gcc43.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README
}
|