blob: 457ffc7e88b214820f7b34917931ed03eb612a0c (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/farsight/farsight-0.1.28-r1.ebuild,v 1.2 2009/07/08 12:10:53 tester Exp $
DESCRIPTION="FarSight is an audio/video conferencing framework specifically designed for Instant Messengers."
HOMEPAGE="http://farsight.freedesktop.org/"
SRC_URI="http://farsight.freedesktop.org/releases/${PN}/${P}.tar.gz"
#EDARCS_REPO_URI="http://projects.collabora.co.uk/darcs/farsight/farsight"
LICENSE="LGPL-2.1"
KEYWORDS="~alpha ~amd64 ~ia64 ~sparc ~x86"
IUSE="jingle doc test"
# msn yahoo
SLOT="0"
RESTRICT="test"
COMMON_DEPEND="=media-libs/gstreamer-0.10*
>=media-libs/gstreamer-0.10.13
=media-libs/gst-plugins-base-0.10*
>=dev-libs/glib-2.6
dev-libs/libxml2
jingle? ( >=net-libs/libjingle-0.3.11 )"
RDEPEND="${COMMON_DEPEND}
>=media-plugins/gst-plugins-farsight-0.12.7
|| ( ( >=media-libs/gst-plugins-bad-0.10.11 >=media-plugins/gst-plugins-farsight-0.12.11 )
=media-plugins/gst-plugins-farsight-0.12.10 )
!<net-voip/telepathy-stream-engine-0.5.0
=media-libs/gst-plugins-good-0.10*
=media-plugins/gst-plugins-ffmpeg-0.10*"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig
doc? ( >=dev-util/gtk-doc-1.5 )
test? ( >=dev-libs/check-0.9.4 )"
src_compile() {
# I'm disabling clinkc because it sucks, isnt in portage
# and I couldnt care less for upnp
econf --enable-rtp \
--disable-clinkc \
$(use_enable doc) \
$(use_enable jingle jingle-p2p) || die "econf failed"
# Not yet ported to the new version
# $(use_enable msn msnwebcam) \
# $(use_enable msn msnavconf) \
# $(use_enable yahoo yahoowebcam) \
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc AUTHORS README TODO
}
|