diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-05-09 16:36:44 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-05-09 16:36:44 +0000 |
commit | 5445e2d9eef83182c92852f5192c7ff77e7309b8 (patch) | |
tree | a8d1c36afcf95f46558f5cab210499ca0a459869 /app-i18n/scim-bridge | |
parent | Keyworded on alpha, bug #268645 (diff) | |
download | gentoo-2-5445e2d9eef83182c92852f5192c7ff77e7309b8.tar.gz gentoo-2-5445e2d9eef83182c92852f5192c7ff77e7309b8.tar.bz2 gentoo-2-5445e2d9eef83182c92852f5192c7ff77e7309b8.zip |
Add patch to build with GCC 4.4, closes bug #269150.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n/scim-bridge')
-rw-r--r-- | app-i18n/scim-bridge/ChangeLog | 6 | ||||
-rw-r--r-- | app-i18n/scim-bridge/files/scim-bridge-0.4.16+gcc-4.4.patch | 12 | ||||
-rw-r--r-- | app-i18n/scim-bridge/scim-bridge-0.4.16.ebuild | 4 |
3 files changed, 20 insertions, 2 deletions
diff --git a/app-i18n/scim-bridge/ChangeLog b/app-i18n/scim-bridge/ChangeLog index c08f2bfb5395..df4d703074e1 100644 --- a/app-i18n/scim-bridge/ChangeLog +++ b/app-i18n/scim-bridge/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-i18n/scim-bridge # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-bridge/ChangeLog,v 1.25 2009/04/19 06:35:16 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-bridge/ChangeLog,v 1.26 2009/05/09 16:36:43 flameeyes Exp $ + + 09 May 2009; Diego E. Pettenò <flameeyes@gentoo.org> + scim-bridge-0.4.16.ebuild, +files/scim-bridge-0.4.16+gcc-4.4.patch: + Add patch to build with GCC 4.4, closes bug #269150. *scim-bridge-0.4.16 (19 Apr 2009) diff --git a/app-i18n/scim-bridge/files/scim-bridge-0.4.16+gcc-4.4.patch b/app-i18n/scim-bridge/files/scim-bridge-0.4.16+gcc-4.4.patch new file mode 100644 index 000000000000..11415931fdbc --- /dev/null +++ b/app-i18n/scim-bridge/files/scim-bridge-0.4.16+gcc-4.4.patch @@ -0,0 +1,12 @@ +Index: scim-bridge-0.4.16/agent/scim-bridge-agent-application.cpp +=================================================================== +--- scim-bridge-0.4.16.orig/agent/scim-bridge-agent-application.cpp ++++ scim-bridge-0.4.16/agent/scim-bridge-agent-application.cpp +@@ -24,6 +24,7 @@ + #include <unistd.h> + + #include <iostream> ++#include <cstdio> + + #include "scim-bridge-agent.h" + diff --git a/app-i18n/scim-bridge/scim-bridge-0.4.16.ebuild b/app-i18n/scim-bridge/scim-bridge-0.4.16.ebuild index ce67e8b20723..166825510f78 100644 --- a/app-i18n/scim-bridge/scim-bridge-0.4.16.ebuild +++ b/app-i18n/scim-bridge/scim-bridge-0.4.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-bridge/scim-bridge-0.4.16.ebuild,v 1.1 2009/04/19 06:35:16 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-bridge/scim-bridge-0.4.16.ebuild,v 1.2 2009/05/09 16:36:43 flameeyes Exp $ EAPI="1" inherit autotools eutils qt3 @@ -54,6 +54,8 @@ src_unpack() { cd "${S}" epatch "${FILESDIR}/${PN}-0.4.15.2-qt4.patch" epatch "${FILESDIR}/${PN}-0.4.15.2-gcc43.patch" + epatch "${FILESDIR}/${P}+gcc-4.4.patch" + # bug #241954 intltoolize --force eautoreconf |