diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-03-03 18:03:22 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-03-03 18:03:22 +0000 |
commit | 089844ac83611a056849e7bc7ee978971ccb8ac7 (patch) | |
tree | 37001170f624b0c86d927d63e26a98d596b10c83 /net-libs/libnice | |
parent | Remove tcl support, not supported anymore (diff) | |
download | gentoo-2-089844ac83611a056849e7bc7ee978971ccb8ac7.tar.gz gentoo-2-089844ac83611a056849e7bc7ee978971ccb8ac7.tar.bz2 gentoo-2-089844ac83611a056849e7bc7ee978971ccb8ac7.zip |
Bump
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-libs/libnice')
-rw-r--r-- | net-libs/libnice/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/libnice/libnice-0.1.4.ebuild (renamed from net-libs/libnice/libnice-0.1.2.ebuild) | 24 |
2 files changed, 18 insertions, 14 deletions
diff --git a/net-libs/libnice/ChangeLog b/net-libs/libnice/ChangeLog index 196e60611df4..365954428631 100644 --- a/net-libs/libnice/ChangeLog +++ b/net-libs/libnice/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libnice # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.53 2013/02/10 22:33:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/ChangeLog,v 1.54 2013/03/03 18:03:22 pacho Exp $ + +*libnice-0.1.4 (03 Mar 2013) + + 03 Mar 2013; Pacho Ramos <pacho@gentoo.org> +libnice-0.1.4.ebuild, + -libnice-0.1.2.ebuild: + Bump 10 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libnice-0.1.3-r1.ebuild: Stable for sparc, wrt bug #454906 diff --git a/net-libs/libnice/libnice-0.1.2.ebuild b/net-libs/libnice/libnice-0.1.4.ebuild index 3dad37623e18..0fdc8912277a 100644 --- a/net-libs/libnice/libnice-0.1.2.ebuild +++ b/net-libs/libnice/libnice-0.1.4.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/libnice-0.1.2.ebuild,v 1.10 2012/12/08 00:57:58 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnice/libnice-0.1.4.ebuild,v 1.1 2013/03/03 18:03:22 pacho Exp $ -EAPI="4" +EAPI=5 +inherit eutils DESCRIPTION="An implementation of the Interactice Connectivity Establishment standard (ICE)" HOMEPAGE="http://nice.freedesktop.org/wiki/" @@ -10,27 +11,24 @@ SRC_URI="http://nice.freedesktop.org/releases/${P}.tar.gz" LICENSE="|| ( MPL-1.1 LGPL-2.1 )" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="+gstreamer upnp" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="+upnp" RDEPEND=">=dev-libs/glib-2.13:2 - gstreamer? ( - media-libs/gstreamer:0.10 - media-libs/gst-plugins-base:0.10 ) - upnp? ( >=net-libs/gupnp-igd-0.1.3 )" + upnp? ( >=net-libs/gupnp-igd-0.1.3:= )" DEPEND="${RDEPEND} dev-util/gtk-doc-am virtual/pkgconfig" src_configure() { + # gstreamer plugin split off into media-plugins/gst-plugins-libnice econf --disable-static \ - $(use_with gstreamer) \ + --without-gstreamer \ + --without-gstreamer-0.10 \ $(use_enable upnp gupnp) } src_install() { default - - # Remove .la files since static libs are no longer being installed - find "${D}" -name '*.la' -exec rm -f '{}' + || die + prune_libtool_files --modules } |