diff options
author | Alastair Tse <liquidx@gentoo.org> | 2006-07-27 17:56:50 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2006-07-27 17:56:50 +0000 |
commit | c8ed4eb6d954e61ba773f79e9613a45cd3536d67 (patch) | |
tree | c7ede6ee7c56fc564979b46da3e56d38f1a4a107 /app-i18n/jmcce | |
parent | bump, update requirements to latest versions, "fix" homepage', dropped ~alpha (diff) | |
download | gentoo-2-c8ed4eb6d954e61ba773f79e9613a45cd3536d67.tar.gz gentoo-2-c8ed4eb6d954e61ba773f79e9613a45cd3536d67.tar.bz2 gentoo-2-c8ed4eb6d954e61ba773f79e9613a45cd3536d67.zip |
added gcc-4.1 compat patch (#135248)
(Portage version: 2.1-r1)
Diffstat (limited to 'app-i18n/jmcce')
-rw-r--r-- | app-i18n/jmcce/ChangeLog | 8 | ||||
-rw-r--r-- | app-i18n/jmcce/files/digest-jmcce-1.4_rc2 | 2 | ||||
-rw-r--r-- | app-i18n/jmcce/files/jmcce-1.4_rc2-gcc4.patch | 13 | ||||
-rw-r--r-- | app-i18n/jmcce/jmcce-1.4_rc2.ebuild | 5 |
4 files changed, 24 insertions, 4 deletions
diff --git a/app-i18n/jmcce/ChangeLog b/app-i18n/jmcce/ChangeLog index 5490f122607a..b697b4fee60a 100644 --- a/app-i18n/jmcce/ChangeLog +++ b/app-i18n/jmcce/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-i18n/jmcce -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/jmcce/ChangeLog,v 1.6 2005/05/17 11:16:36 liquidx Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/jmcce/ChangeLog,v 1.7 2006/07/27 17:56:50 liquidx Exp $ + + 27 Jul 2006; Alastair Tse <liquidx@gentoo.org> + +files/jmcce-1.4_rc2-gcc4.patch, jmcce-1.4_rc2.ebuild: + added gcc-4.1 compat patch (#135248) 17 May 2005; Alastair Tse <liquidx@gentoo.org> +files/jmcce-1.4_rc2-gcc3.4.patch, +files/jmcce-1.4_rc2-kernel.patch, diff --git a/app-i18n/jmcce/files/digest-jmcce-1.4_rc2 b/app-i18n/jmcce/files/digest-jmcce-1.4_rc2 index b8d4a54fcb6f..0f2798dc2108 100644 --- a/app-i18n/jmcce/files/digest-jmcce-1.4_rc2 +++ b/app-i18n/jmcce/files/digest-jmcce-1.4_rc2 @@ -1 +1,3 @@ MD5 cc90be0e97920f9d597e795a13bc9806 jmcce-1.4RC2.tar.gz 6420069 +RMD160 e46fcdcf0a287e6b9365db95014ca67808882b14 jmcce-1.4RC2.tar.gz 6420069 +SHA256 6c9901effa13e30fe80593dc39e6f06e82517a72846449daae34cd4e522e66d5 jmcce-1.4RC2.tar.gz 6420069 diff --git a/app-i18n/jmcce/files/jmcce-1.4_rc2-gcc4.patch b/app-i18n/jmcce/files/jmcce-1.4_rc2-gcc4.patch new file mode 100644 index 000000000000..e34945e9ce0e --- /dev/null +++ b/app-i18n/jmcce/files/jmcce-1.4_rc2-gcc4.patch @@ -0,0 +1,13 @@ +--- src/fb.c.old 2006-06-02 12:11:57.000000000 +0200 ++++ src/fb.c 2006-06-02 12:11:37.000000000 +0200 +@@ -16,8 +16,8 @@ + + #include "fb.h" + +-static size_t vsize; +-static int fh; ++size_t vsize; ++int fh; + + /*for 256 color*/ + diff --git a/app-i18n/jmcce/jmcce-1.4_rc2.ebuild b/app-i18n/jmcce/jmcce-1.4_rc2.ebuild index d955ae3b8a41..661eee9e5852 100644 --- a/app-i18n/jmcce/jmcce-1.4_rc2.ebuild +++ b/app-i18n/jmcce/jmcce-1.4_rc2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/jmcce/jmcce-1.4_rc2.ebuild,v 1.11 2005/05/18 05:03:27 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/jmcce/jmcce-1.4_rc2.ebuild,v 1.12 2006/07/27 17:56:50 liquidx Exp $ inherit toolchain-funcs eutils @@ -29,6 +29,7 @@ src_unpack() { epatch ${FILESDIR}/${P}-gcc3-gentoo.diff fi epatch ${FILESDIR}/${P}-gcc3.4.patch + epatch ${FILESDIR}/${P}-gcc4.patch epatch ${FILESDIR}/${P}-kernel.patch } |