diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-03-09 13:15:33 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-03-09 13:15:33 +0000 |
commit | 8b84337e64294c341200895193c0cebcd0e21101 (patch) | |
tree | 134485cde4417cee3026e2354ed1addb772415be /app-office/homebank | |
parent | Reorganize patches. (diff) | |
download | gentoo-2-8b84337e64294c341200895193c0cebcd0e21101.tar.gz gentoo-2-8b84337e64294c341200895193c0cebcd0e21101.tar.bz2 gentoo-2-8b84337e64294c341200895193c0cebcd0e21101.zip |
Add patch to avoid implicit pointer conversion due to missing function definition. Marked stable for amd64. Bug #354853
(Portage version: 2.1.9.41/cvs/Linux x86_64)
Diffstat (limited to 'app-office/homebank')
-rw-r--r-- | app-office/homebank/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/homebank/files/homebank-4.3-implicit-pointer.patch | 13 | ||||
-rw-r--r-- | app-office/homebank/homebank-4.3.ebuild | 7 |
3 files changed, 23 insertions, 4 deletions
diff --git a/app-office/homebank/ChangeLog b/app-office/homebank/ChangeLog index 624274a93150..83d73aa2fa8c 100644 --- a/app-office/homebank/ChangeLog +++ b/app-office/homebank/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-office/homebank # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.20 2011/03/07 09:26:49 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.21 2011/03/09 13:15:33 hwoarang Exp $ + + 09 Mar 2011; Markos Chandras <hwoarang@gentoo.org> homebank-4.3.ebuild, + +files/homebank-4.3-implicit-pointer.patch: + Add patch to avoid implicit pointer conversion due to missing function + definition. Marked stable for amd64. Bug #354853 07 Mar 2011; Thomas Kahle <tomka@gentoo.org> homebank-4.3.ebuild: x86 stable per bug 354853 diff --git a/app-office/homebank/files/homebank-4.3-implicit-pointer.patch b/app-office/homebank/files/homebank-4.3-implicit-pointer.patch new file mode 100644 index 000000000000..701a107e8ce1 --- /dev/null +++ b/app-office/homebank/files/homebank-4.3-implicit-pointer.patch @@ -0,0 +1,13 @@ +Index: homebank-4.3/src/gtkchart.c +=================================================================== +--- homebank-4.3.orig/src/gtkchart.c ++++ homebank-4.3/src/gtkchart.c +@@ -108,7 +108,7 @@ gchar *chart_print_int(GtkChart *chart, + gchar *chart_print_double(GtkChart *chart, gdouble value); + + static GtkHBoxClass *parent_class = NULL; +- ++GdkGC* gdk_gc_new (GdkDrawable *drawable); + + struct mycolors + { diff --git a/app-office/homebank/homebank-4.3.ebuild b/app-office/homebank/homebank-4.3.ebuild index bd95608d2c5d..85393e0e39d3 100644 --- a/app-office/homebank/homebank-4.3.ebuild +++ b/app-office/homebank/homebank-4.3.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/homebank-4.3.ebuild,v 1.3 2011/03/07 09:26:49 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/homebank-4.3.ebuild,v 1.4 2011/03/09 13:15:33 hwoarang Exp $ EAPI="2" -inherit fdo-mime +inherit eutils fdo-mime DESCRIPTION="Free, easy, personal accounting for everyone" HOMEPAGE="http://homebank.free.fr/index.php" @@ -12,7 +12,7 @@ SRC_URI="http://homebank.free.fr/public/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" IUSE="ofx" -KEYWORDS="~amd64 ~ppc x86" +KEYWORDS="amd64 ~ppc x86" RDEPEND=">=x11-libs/gtk+-2.14 >=dev-libs/glib-2.17 @@ -29,6 +29,7 @@ S="${WORKDIR}/${P/_/}" src_prepare() { sed -i -e 's/true/TRUE/' src/import.c || die "sed failed" echo -e "src/da_encoding.c\nsrc/hb_transaction.c" >> po/POTFILES.in || die "echo failed" + epatch "${FILESDIR}"/${P}-implicit-pointer.patch } src_configure() { |