diff options
Diffstat (limited to 'net-libs/ortp/ortp-0.7.0.ebuild')
-rw-r--r-- | net-libs/ortp/ortp-0.7.0.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-libs/ortp/ortp-0.7.0.ebuild b/net-libs/ortp/ortp-0.7.0.ebuild new file mode 100644 index 000000000000..9128af9e53c3 --- /dev/null +++ b/net-libs/ortp/ortp-0.7.0.ebuild @@ -0,0 +1,31 @@ +# 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.0.ebuild,v 1.1 2005/03/21 01:00:11 stkn Exp $ + +IUSE="" + +inherit eutils + +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" + +S=${WORKDIR}/${P} + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64" + +DEPEND=">=dev-libs/glib-2.0.0" + +src_compile() { + econf || die "Configure failed" + emake || die "Make failed" +} + +src_install() { + emake DESTDIR=${D} install || die "Make install failed" + + dodoc README ChangeLog AUTHORS COPYING TODO NEWS INSTALL + dodoc docs/* +} |