pacho 14/09/07 12:41:18 Modified: ChangeLog Added: libsigc++-2.3.2-r1.ebuild Removed: libsigc++-2.3.2.ebuild Log: Add missing include (#522166 by Juergen Rose and Franz Fellner) (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.193 dev-libs/libsigc++/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.193&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.193&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?r1=1.192&r2=1.193 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v retrieving revision 1.192 retrieving revision 1.193 diff -u -r1.192 -r1.193 --- ChangeLog 4 Sep 2014 10:20:19 -0000 1.192 +++ ChangeLog 7 Sep 2014 12:41:18 -0000 1.193 @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/libsigc++ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.192 2014/09/04 10:20:19 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.193 2014/09/07 12:41:18 pacho Exp $ + +*libsigc++-2.3.2-r1 (07 Sep 2014) + + 07 Sep 2014; Pacho Ramos <[email protected]> + +files/libsigc++-2.3.2-missing-include.patch, +libsigc++-2.3.2-r1.ebuild, + -libsigc++-2.3.2.ebuild: + Add missing include (#522166 by Juergen Rose and Franz Fellner) *libsigc++-2.3.2 (04 Sep 2014) 1.1 dev-libs/libsigc++/libsigc++-2.3.2-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/libsigc++-2.3.2-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/libsigc++-2.3.2-r1.ebuild?rev=1.1&content-type=text/plain Index: libsigc++-2.3.2-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/libsigc++/libsigc++-2.3.2-r1.ebuild,v 1.1 2014/09/07 12:41:18 pacho Exp $ EAPI="5" GCONF_DEBUG="no" inherit eutils gnome2 flag-o-matic DESCRIPTION="Typesafe callback system for standard C++" HOMEPAGE="http://libsigc.sourceforge.net/" LICENSE="LGPL-2.1" SLOT="2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc static-libs test" RDEPEND="" DEPEND="sys-devel/m4" # Needs mm-common for eautoreconf src_prepare() { # don't waste time building examples sed -i 's|^\(SUBDIRS =.*\)examples\(.*\)$|\1\2|' \ Makefile.am Makefile.in || die "sed examples failed" # don't waste time building tests unless USE=test if ! use test ; then sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' \ Makefile.am Makefile.in || die "sed tests failed" fi # Add an include in limit_reference.h (from 'master'), bug #522166 epatch "${FILESDIR}/${P}-missing-include.patch" gnome2_src_prepare } src_configure() { filter-flags -fno-exceptions gnome2_src_configure \ $(use_enable doc documentation) \ $(use_enable static-libs static) } src_install() { gnome2_src_install if use doc ; then dohtml -r docs/reference/html/* docs/images/* insinto /usr/share/doc/${PF} doins -r examples fi }
