diff options
author | Timothy Redaelli <drizzt@gentoo.org> | 2006-11-26 15:17:55 +0000 |
---|---|---|
committer | Timothy Redaelli <drizzt@gentoo.org> | 2006-11-26 15:17:55 +0000 |
commit | 54bc796d54640d901c69a27a51561bfa60d27247 (patch) | |
tree | 72bc126cbdeace802a7e9034fee10c54dbb6d626 /net-misc/linphone | |
parent | Added ~x86 keyword. (diff) | |
download | gentoo-2-54bc796d54640d901c69a27a51561bfa60d27247.tar.gz gentoo-2-54bc796d54640d901c69a27a51561bfa60d27247.tar.bz2 gentoo-2-54bc796d54640d901c69a27a51561bfa60d27247.zip |
Imported 1.5.1 version from voip overlay without USE portaudio.
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'net-misc/linphone')
-rw-r--r-- | net-misc/linphone/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/linphone/files/digest-linphone-1.5.1 | 3 | ||||
-rw-r--r-- | net-misc/linphone/linphone-1.5.1.ebuild | 65 |
3 files changed, 74 insertions, 1 deletions
diff --git a/net-misc/linphone/ChangeLog b/net-misc/linphone/ChangeLog index 12856deb0e47..7c403d5d8a4e 100644 --- a/net-misc/linphone/ChangeLog +++ b/net-misc/linphone/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/linphone # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/linphone/ChangeLog,v 1.16 2006/07/07 06:49:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/linphone/ChangeLog,v 1.17 2006/11/26 15:17:55 drizzt Exp $ + +*linphone-1.5.1 (26 Nov 2006) + + 26 Nov 2006; Timothy Redaelli <drizzt@gentoo.org> +linphone-1.5.1.ebuild: + Imported 1.5.1 version from voip overlay without USE portaudio. 07 Jul 2006; Michael Sterrett <mr_bones_@gentoo.org> linphone-1.1.0.ebuild: diff --git a/net-misc/linphone/files/digest-linphone-1.5.1 b/net-misc/linphone/files/digest-linphone-1.5.1 new file mode 100644 index 000000000000..c85319198560 --- /dev/null +++ b/net-misc/linphone/files/digest-linphone-1.5.1 @@ -0,0 +1,3 @@ +MD5 196f817d77aba906e7c1a896f8501a0f linphone-1.5.1.tar.gz 7693808 +RMD160 9ecf7e31847c9f8421046b01fd6b642357b18658 linphone-1.5.1.tar.gz 7693808 +SHA256 a747aa01db7e74acf57ee4e04fbe2540df13fb0d590f54d1e86b5b509e4ca72c linphone-1.5.1.tar.gz 7693808 diff --git a/net-misc/linphone/linphone-1.5.1.ebuild b/net-misc/linphone/linphone-1.5.1.ebuild new file mode 100644 index 000000000000..b14dd05d2604 --- /dev/null +++ b/net-misc/linphone/linphone-1.5.1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/linphone/linphone-1.5.1.ebuild,v 1.1 2006/11/26 15:17:55 drizzt Exp $ + +MY_DPV="${PV%.*}.x" + +DESCRIPTION="Linphone is a SIP phone with a GNOME interface." +HOMEPAGE="http://www.linphone.org" +SRC_URI="http://download.savannah.nongnu.org/releases/${PN}/${MY_DPV}/source/${P}.tar.gz" +SLOT=1 +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" + +IUSE="alsa gnome ilbc ipv6 novideo xv" + +RDEPEND="dev-libs/glib + dev-perl/XML-Parser + net-dns/bind-tools + >=net-libs/libosip-2.2.0 + >=media-libs/speex-1.1.6 + x86? ( xv? ( dev-lang/nasm ) ) + gnome? ( >=gnome-base/gnome-panel-2 + >=gnome-base/libgnome-2 + >=gnome-base/libgnomeui-2 + >=x11-libs/gtk+-2 ) + alsa? ( media-libs/alsa-lib ) + ilbc? ( dev-libs/ilbc-rfc3951 ) + !novideo? ( >=media-libs/libsdl-1.2.9 + media-video/ffmpeg + >=media-libs/libtheora-1.0_alpha7 )" +# portaudio? ( >=media-libs/portaudio-19_pre )" + +DEPEND="${RDEPEND}" + +src_compile() { + local withgnome myconf="" + + use gnome && withgnome="yes" || withgnome="no" + use x86 && myconf="--enable-truespeech" + + econf \ + --libdir=/usr/$(get_libdir)/linphone \ + --enable-gnome_ui=${withgnome} \ + $(use_with ilbc) \ + $(use_enable ipv6) \ + $(use_enable alsa) \ + $(use_enable !novideo video) \ + --disable-portaudio \ + ${myconf} || die "Unable to configure" + + emake || die "Unable to make" +} + +src_install () { + emake DESTDIR="${D}" install || die "Failed to install" + + dodoc ABOUT-NLS AUTHORS BUGS ChangeLog COPYING INSTALL NEWS README + dodoc README.arm TODO + + # don't install ortp includes, docs and pkgconfig files + # to avoid conflicts with net-libs/ortp + rm -rf "${D}"/usr/include/ortp + rm -rf "${D}"/usr/share/gtk-doc/html/ortp + rm -rf "${D}"/usr/$(get_libdir)/linphone/pkgconfig +} |