diff options
author | Stefan Knoblich <stkn@gentoo.org> | 2005-09-09 02:12:45 +0000 |
---|---|---|
committer | Stefan Knoblich <stkn@gentoo.org> | 2005-09-09 02:12:45 +0000 |
commit | 9983101cb89236e6281d3f74666671667dbb5f94 (patch) | |
tree | 7c2e28c6c837dce965b82483d953c498a88cf07a /net-misc | |
parent | Added ilbc flag for yate-0.9.0_pre1. (diff) | |
download | gentoo-2-9983101cb89236e6281d3f74666671667dbb5f94.tar.gz gentoo-2-9983101cb89236e6281d3f74666671667dbb5f94.tar.bz2 gentoo-2-9983101cb89236e6281d3f74666671667dbb5f94.zip |
Version bump.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/yate/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/yate/files/digest-yate-0.9.0_pre1 | 1 | ||||
-rw-r--r-- | net-misc/yate/yate-0.9.0_pre1.ebuild | 57 |
3 files changed, 65 insertions, 1 deletions
diff --git a/net-misc/yate/ChangeLog b/net-misc/yate/ChangeLog index 476e11d9bfc0..b7debfb2abec 100644 --- a/net-misc/yate/ChangeLog +++ b/net-misc/yate/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/yate # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/yate/ChangeLog,v 1.6 2005/07/28 21:00:05 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/yate/ChangeLog,v 1.7 2005/09/09 02:12:45 stkn Exp $ + +*yate-0.9.0_pre1 (09 Sep 2005) + + 09 Sep 2005; Stefan Knoblich <stkn@gentoo.org> +yate-0.9.0_pre1.ebuild: + Version bump. Engine has been rewritten, new RTP stack,... pre-release, still + missing some features. 28 Jul 2005; <stkn@gentoo.org> +files/yate-0.8.7-gcc34.patch, yate-0.8.7.ebuild: diff --git a/net-misc/yate/files/digest-yate-0.9.0_pre1 b/net-misc/yate/files/digest-yate-0.9.0_pre1 new file mode 100644 index 000000000000..7e7afbd4e239 --- /dev/null +++ b/net-misc/yate/files/digest-yate-0.9.0_pre1 @@ -0,0 +1 @@ +MD5 a3b9bbdabbfcc78c24d5188d7bd630d8 yate-0.9.0pre1.tar.gz 789297 diff --git a/net-misc/yate/yate-0.9.0_pre1.ebuild b/net-misc/yate/yate-0.9.0_pre1.ebuild new file mode 100644 index 000000000000..ecba28ec7823 --- /dev/null +++ b/net-misc/yate/yate-0.9.0_pre1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/yate/yate-0.9.0_pre1.ebuild,v 1.1 2005/09/09 02:12:45 stkn Exp $ + +IUSE="gsm gtk2 h323 ilbc zaptel" + +inherit eutils + +DESCRIPTION="YATE - Yet Another Telephony Engine" +HOMEPAGE="http://yate.null.ro/" +SRC_URI="http://voip.null.ro/tarballs/${P/_/}.tar.gz" + +S=${WORKDIR}/${PN} + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64" + +DEPEND="media-sound/sox + zaptel? ( >=net-libs/libpri-1.0.0 + >=net-misc/zaptel-1.0.0 ) + h323? ( >=net-libs/openh323-1.15.3 ) + gtk2? ( >=x11-libs/gtk+-2.6.8 ) + gsm? ( media-sound/gsm )" + +#src_unpack() { +# unpack ${A} +# +# cd ${S} +# # patch for gcc3.4 +# epatch ${FILESDIR}/${P}-gcc34.patch +#} + +src_compile() { + econf \ + $(use_with gtk2 libgtk2 /usr) \ + $(use_with h323 openh323 /usr) \ + $(use_with h323 pwlib /usr) \ + $(use_with zaptel libpri) \ + $(use_with gsm libgsm) \ + $(use_enable ilbc) \ + || die "Configure failed" + emake everything || die "Make failed" +} + +src_install() { + emake DESTDIR=${D} install || die "Make install failed" + + newinitd ${FILESDIR}/yate.rc6 yate + newconfd ${FILESDIR}/yate.confd yate + + # install standard docs... + dodoc README ChangeLog docs/* + + docinto scripts + dodoc scripts/* +} |