chainsaw 14/05/13 11:55:30 Modified: ChangeLog Added: iax-0.2.2-r2.ebuild Log: Stop trying to tiptoe around the autotools eclass and just use it correctly. This instills LDFLAGS respect, which was flagged up by Diego Elio "Flameeyes" Pettenò in bug #337357. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB5058F9A)
Revision Changes Path 1.13 net-libs/iax/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iax/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iax/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iax/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-libs/iax/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 27 Oct 2013 09:38:21 -0000 1.12 +++ ChangeLog 13 May 2014 11:55:30 -0000 1.13 @@ -1,6 +1,14 @@ # ChangeLog for net-libs/iax -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/iax/ChangeLog,v 1.12 2013/10/27 09:38:21 pacho Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/iax/ChangeLog,v 1.13 2014/05/13 11:55:30 chainsaw Exp $ + +*iax-0.2.2-r2 (13 May 2014) + + 13 May 2014; Tony Vroon <[email protected]> +iax-0.2.2-r2.ebuild, + +files/0.2.2-sandbox.patch: + Stop trying to tiptoe around the autotools eclass and just use it correctly. + This instills LDFLAGS respect, which was flagged up by Diego Elio "Flameeyes" + Pettenò in bug #337357. 27 Oct 2013; Pacho Ramos <[email protected]> metadata.xml: Cleanup due voip herd removal: 1.1 net-libs/iax/iax-0.2.2-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iax/iax-0.2.2-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/iax/iax-0.2.2-r2.ebuild?rev=1.1&content-type=text/plain Index: iax-0.2.2-r2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-libs/iax/iax-0.2.2-r2.ebuild,v 1.1 2014/05/13 11:55:30 chainsaw Exp $ EAPI="5" inherit autotools eutils DESCRIPTION="IAX (Inter Asterisk eXchange) Library" HOMEPAGE="http://www.asterisk.org/" SRC_URI="http://downloads.asterisk.org/pub/telephony/libiax/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="debug snomhack" src_prepare() { epatch "${FILESDIR}/${PV}-sandbox.patch" eautoreconf } src_configure() { econf \ $(use_enable debug extreme-debug) \ $(use_enable snomhack) } src_install () { default dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" }
