summaryrefslogtreecommitdiff
blob: e9bcf0fa5e6a718408728e96468d43044f668384 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/ortp/ortp-0.7.1.ebuild,v 1.1.1.1 2005/11/30 10:03:02 chriswhite Exp $

DESCRIPTION="Open Real-time Transport Protocol (RTP) stack"
HOMEPAGE="http://www.linphone.org/ortp/"
SRC_URI="http://www.linphone.org/ortp/sources/${P}.tar.gz"

IUSE="ipv6"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"

DEPEND=">=dev-libs/glib-2.0.0
		>=dev-util/pkgconfig-0.9.0"
RDEPEND=">=dev-libs/glib-2.0.0"

src_compile() {
	econf $(use_enable ipv6) || die 'configure failed'
	emake || die 'make compile failed'
}

src_install() {
	emake DESTDIR=${D} install || die "Make install failed"

	dodoc README ChangeLog AUTHORS TODO NEWS
	dodoc docs/*.txt
}