diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-20 04:17:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-20 04:17:16 +0000 |
commit | 6d71a461eab76debfef39ac704fd6540372941ee (patch) | |
tree | 00121a67f62c1c462582f6f94789b338bac82b40 /net-voip | |
parent | USE=qt => USE=qt3 (diff) | |
download | gentoo-2-6d71a461eab76debfef39ac704fd6540372941ee.tar.gz gentoo-2-6d71a461eab76debfef39ac704fd6540372941ee.tar.bz2 gentoo-2-6d71a461eab76debfef39ac704fd6540372941ee.zip |
Change USE=novideo to USE=video and force newer gsm as the older one installed broken libraries.
(Portage version: 2.1.4)
Diffstat (limited to 'net-voip')
-rw-r--r-- | net-voip/linphone/ChangeLog | 6 | ||||
-rw-r--r-- | net-voip/linphone/linphone-2.0.1-r1.ebuild | 13 |
2 files changed, 13 insertions, 6 deletions
diff --git a/net-voip/linphone/ChangeLog b/net-voip/linphone/ChangeLog index a1ab4eedfd88..25c58f7b882b 100644 --- a/net-voip/linphone/ChangeLog +++ b/net-voip/linphone/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-voip/linphone # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-voip/linphone/ChangeLog,v 1.7 2008/01/16 02:24:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-voip/linphone/ChangeLog,v 1.8 2008/01/20 04:17:16 vapier Exp $ + + 20 Jan 2008; Mike Frysinger <vapier@gentoo.org> linphone-2.0.1-r1.ebuild: + Change USE=novideo to USE=video and force newer gsm as the older one + installed broken libraries. 16 Jan 2008; Mike Frysinger <vapier@gentoo.org> +files/linphone-2.0.1-speexdsp.patch, linphone-2.0.1-r1.ebuild: diff --git a/net-voip/linphone/linphone-2.0.1-r1.ebuild b/net-voip/linphone/linphone-2.0.1-r1.ebuild index ee2c57199e81..2f749f0ae1f1 100644 --- a/net-voip/linphone/linphone-2.0.1-r1.ebuild +++ b/net-voip/linphone/linphone-2.0.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-voip/linphone/linphone-2.0.1-r1.ebuild,v 1.2 2008/01/16 02:24:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-voip/linphone/linphone-2.0.1-r1.ebuild,v 1.3 2008/01/20 04:17:16 vapier Exp $ # Note: video support in linphone relies on swscaler being disabled # in ffmpeg. this is because the video code in linphone is old @@ -16,7 +16,10 @@ SRC_URI="http://download.savannah.nongnu.org/releases/${PN}/stable/sources/${P}. LICENSE="GPL-2" SLOT="1" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="alsa arts console gsm gtk ilbc ipv6 novideo xv" +IUSE="alsa arts console gsm gtk ilbc ipv6 video xv" +# XXX: Should "video" be split into ffmpeg/libsdl ? They are two distinct +# things: libsdl is just for video display while ffmpeg is just for +# video capture ... but does anyone actually want a one-way linphone ? RDEPEND="dev-libs/glib dev-perl/XML-Parser @@ -24,7 +27,7 @@ RDEPEND="dev-libs/glib >=net-libs/libosip-3.0.3 >=net-libs/libeXosip-3.0.3 >=media-libs/speex-1.1.12 - gsm? ( >=media-sound/gsm-1.0.12 ) + gsm? ( >=media-sound/gsm-1.0.12-r1 ) x86? ( xv? ( dev-lang/nasm ) ) gtk? ( >=x11-libs/gtk+-2 @@ -33,7 +36,7 @@ RDEPEND="dev-libs/glib alsa? ( media-libs/alsa-lib ) arts? ( kde-base/arts ) ilbc? ( dev-libs/ilbc-rfc3951 ) - !novideo? ( + video? ( >=media-libs/libsdl-1.2.9 media-video/ffmpeg >=media-libs/libtheora-1.0_alpha7 @@ -67,7 +70,7 @@ src_compile() { $(use_enable alsa) \ $(use_enable arts artsc) \ $(use_enable gsm) \ - $(use_enable !novideo video) \ + $(use_enable video) \ --disable-portaudio \ $(use_enable x86 truespeech) \ || die "Unable to configure" |