diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-05-08 01:47:06 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-05-08 01:47:06 +0000 |
commit | 1ba87d002635eb8f38fb702fe2448215a39743d1 (patch) | |
tree | a56b7431d13462dfaeae917388aa8da09ac51dbf /dev-libs | |
parent | Update pkg_postinst to display eclectic instructions if it's installed. (diff) | |
download | gentoo-2-1ba87d002635eb8f38fb702fe2448215a39743d1.tar.gz gentoo-2-1ba87d002635eb8f38fb702fe2448215a39743d1.tar.bz2 gentoo-2-1ba87d002635eb8f38fb702fe2448215a39743d1.zip |
Filter the -fno-exceptions flag out, bug 84263, and mark 2.0.11 stable on x86 and amd64.
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libsigc++/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libsigc++/libsigc++-2.0.11.ebuild | 5 | ||||
-rw-r--r-- | dev-libs/libsigc++/libsigc++-2.0.5.ebuild | 5 |
3 files changed, 12 insertions, 5 deletions
diff --git a/dev-libs/libsigc++/ChangeLog b/dev-libs/libsigc++/ChangeLog index 33c04388a8b6..363cfe46135c 100644 --- a/dev-libs/libsigc++/ChangeLog +++ b/dev-libs/libsigc++/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libsigc++ # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.52 2005/05/03 11:53:44 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.53 2005/05/08 01:47:06 cryos Exp $ + + 08 May 2005; Marcus D. Hanwell <cryos@gentoo.org> libsigc++-2.0.5.ebuild, + libsigc++-2.0.11.ebuild: + Filter the -fno-exceptions flag out, bug 84263, and mark 2.0.11 stable on + x86 and amd64. 03 May 2005; Aaron Walker <ka0ttic@gentoo.org> libsigc++-2.0.5.ebuild: Fix SLOT (s/1.3/2/). diff --git a/dev-libs/libsigc++/libsigc++-2.0.11.ebuild b/dev-libs/libsigc++/libsigc++-2.0.11.ebuild index b4893991f208..5f37d95a8543 100644 --- a/dev-libs/libsigc++/libsigc++-2.0.11.ebuild +++ b/dev-libs/libsigc++/libsigc++-2.0.11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.0.11.ebuild,v 1.3 2005/04/24 00:03:22 kito Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.0.11.ebuild,v 1.4 2005/05/08 01:47:06 cryos Exp $ inherit eutils gnome.org flag-o-matic @@ -9,12 +9,13 @@ HOMEPAGE="http://libsigc.sourceforge.net/" LICENSE="LGPL-2.1" SLOT="2" -KEYWORDS="~x86 ~ppc ~alpha ~amd64 ~sparc ~ppc64 ~hppa ~ppc-macos" +KEYWORDS="x86 ~ppc ~alpha amd64 ~sparc ~ppc64 ~hppa ~ppc-macos" IUSE="debug" DEPEND="virtual/libc" src_compile() { + filter-flags -fno-exceptions if use ppc-macos ; then if [ -e /usr/lib/lib/libgcc_s.1.dylib ] ; then append-ldflags -lgcc_s diff --git a/dev-libs/libsigc++/libsigc++-2.0.5.ebuild b/dev-libs/libsigc++/libsigc++-2.0.5.ebuild index 20f4f9149bb9..8f3052c4750f 100644 --- a/dev-libs/libsigc++/libsigc++-2.0.5.ebuild +++ b/dev-libs/libsigc++/libsigc++-2.0.5.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.0.5.ebuild,v 1.11 2005/05/03 11:53:44 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.0.5.ebuild,v 1.12 2005/05/08 01:47:06 cryos Exp $ -inherit eutils +inherit eutils flag-o-matic DESCRIPTION="Typesafe callback system for standard C++" HOMEPAGE="http://libsigc.sourceforge.net/" @@ -21,6 +21,7 @@ src_unpack() { epatch ${FILESDIR}/gcc-3.4.patch } src_compile() { + filter-flags -fno-exceptions local myconf use debug \ && myconf="--enable-debug=yes" \ |