dev-zero 14/07/05 08:02:24 Modified: ChangeLog Added: librelp-1.2.7-r1.ebuild Log: Always DEPEND on gnutls for the headers (bug #513754), only RDEPEND for gnutls depends now on the flag. Add a patch from upstream to prevent segfaults with keepalive. Use autotools-utils eclass for src_install (solves bug #475012 properly). (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1A5D023975B0583D!)
Revision Changes Path 1.27 dev-libs/librelp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/ChangeLog?rev=1.27&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/ChangeLog?rev=1.27&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/ChangeLog?r1=1.26&r2=1.27 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- ChangeLog 4 May 2014 14:17:14 -0000 1.26 +++ ChangeLog 5 Jul 2014 08:02:24 -0000 1.27 @@ -1,6 +1,16 @@ # ChangeLog for dev-libs/librelp # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v 1.26 2014/05/04 14:17:14 ultrabug Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/ChangeLog,v 1.27 2014/07/05 08:02:24 dev-zero Exp $ + +*librelp-1.2.7-r1 (05 Jul 2014) + + 05 Jul 2014; Tiziano Müller <[email protected]> + +files/librelp-1.2.7-prevent-segfault-with-keepalive.patch, + +librelp-1.2.7-r1.ebuild: + Always DEPEND on gnutls for the headers (bug #513754), only RDEPEND for gnutls + depends now on the flag. Add a patch from upstream to prevent segfaults with + keepalive. Use autotools-utils eclass for src_install (solves bug #475012 + properly). *librelp-1.2.7 (04 May 2014) 1.1 dev-libs/librelp/librelp-1.2.7-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/librelp-1.2.7-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/librelp/librelp-1.2.7-r1.ebuild?rev=1.1&content-type=text/plain Index: librelp-1.2.7-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/librelp/librelp-1.2.7-r1.ebuild,v 1.1 2014/07/05 08:02:24 dev-zero Exp $ EAPI=5 inherit autotools-utils DESCRIPTION="An easy to use library for the RELP protocol." HOMEPAGE="http://www.librelp.com/" SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz" LICENSE="GPL-3 doc? ( FDL-1.3 )" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~sparc ~x86" IUSE="debug doc +ssl static-libs" RDEPEND=" ssl? ( >=net-libs/gnutls-2.12.23-r1 ) " DEPEND=" >=net-libs/gnutls-2.12.23-r1 virtual/pkgconfig " AUTOTOOLS_IN_SOURCE_BUILD=1 PATCHES=( "${FILESDIR}/${P}-prevent-segfault-with-keepalive.patch" ) src_configure() { # gnutls-headers are always required (in src/tcp.h) despite the flag, bug #513754 local myeconfargs=( $(use_enable debug) $(use_enable ssl tls) ) autotools-utils_src_configure } src_install() { use doc && HTML_DOCS=( doc/relp.html ) autotools-utils_src_install }
