summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2011-09-19 15:30:18 +0000
committerJustin Lecher <jlec@gentoo.org>2011-09-19 15:30:18 +0000
commit51e600a440486893b077c161ac0f2ececad11422 (patch)
tree9508228719a413ecd5a03575a995cb563b0c6cb6 /sci-mathematics
parentRemove ebeep/sleep. (diff)
downloadgentoo-2-51e600a440486893b077c161ac0f2ececad11422.tar.gz
gentoo-2-51e600a440486893b077c161ac0f2ececad11422.tar.bz2
gentoo-2-51e600a440486893b077c161ac0f2ececad11422.zip
Fix for seqf on zterm, thanks Maciej Szmigiero for the patch , #301625
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Diffstat (limited to 'sci-mathematics')
-rw-r--r--sci-mathematics/scilab/ChangeLog6
-rw-r--r--sci-mathematics/scilab/files/scilab-4.1.2-gcc45-2.patch12
-rw-r--r--sci-mathematics/scilab/scilab-4.1.2-r2.ebuild5
3 files changed, 20 insertions, 3 deletions
diff --git a/sci-mathematics/scilab/ChangeLog b/sci-mathematics/scilab/ChangeLog
index 94b7e1c26cdc..1b0bc8eabe2b 100644
--- a/sci-mathematics/scilab/ChangeLog
+++ b/sci-mathematics/scilab/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-mathematics/scilab
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/ChangeLog,v 1.59 2011/08/02 05:49:16 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/ChangeLog,v 1.60 2011/09/19 15:30:17 jlec Exp $
+
+ 19 Sep 2011; Justin Lecher <jlec@gentoo.org> scilab-4.1.2-r2.ebuild,
+ +files/scilab-4.1.2-gcc45-2.patch:
+ Fix for seqf on zterm, thanks Maciej Szmigiero for the patch , #301625
02 Aug 2011; Matt Turner <mattst88@gentoo.org> scilab-4.1.2-r1.ebuild,
scilab-4.1.2-r2.ebuild:
diff --git a/sci-mathematics/scilab/files/scilab-4.1.2-gcc45-2.patch b/sci-mathematics/scilab/files/scilab-4.1.2-gcc45-2.patch
new file mode 100644
index 000000000000..201f4f6ae0af
--- /dev/null
+++ b/sci-mathematics/scilab/files/scilab-4.1.2-gcc45-2.patch
@@ -0,0 +1,12 @@
+--- routines/gzvt2/vte.c.old 2011-06-05 01:08:52.000000000 +0200
++++ routines/gzvt2/vte.c 2011-06-05 01:09:11.612332604 +0200
+@@ -80,7 +80,8 @@
+ geometry.min_width = xpad + terminal->char_width * 2;
+ geometry.min_height = ypad + terminal->char_height * 2;
+
+- gtk_window_set_geometry_hints(window, widget, &geometry,
++ if (gtk_widget_get_realized(widget))
++ gtk_window_set_geometry_hints(window, widget, &geometry,
+ GDK_HINT_RESIZE_INC |
+ GDK_HINT_BASE_SIZE |
+ GDK_HINT_MIN_SIZE);
diff --git a/sci-mathematics/scilab/scilab-4.1.2-r2.ebuild b/sci-mathematics/scilab/scilab-4.1.2-r2.ebuild
index 586df5b61a72..17117670e37b 100644
--- a/sci-mathematics/scilab/scilab-4.1.2-r2.ebuild
+++ b/sci-mathematics/scilab/scilab-4.1.2-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/scilab-4.1.2-r2.ebuild,v 1.12 2011/08/02 05:49:16 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/scilab/scilab-4.1.2-r2.ebuild,v 1.13 2011/09/19 15:30:17 jlec Exp $
EAPI=4
@@ -51,7 +51,8 @@ src_prepare() {
"${FILESDIR}"/${PN}-4.1-examples.patch \
"${FILESDIR}"/${P}-java-config.patch \
"${FILESDIR}"/${P}-tmp-fix.patch \
- "${FILESDIR}"/${P}-gcc45.patch
+ "${FILESDIR}"/${P}-gcc45.patch \
+ "${FILESDIR}"/${P}-gcc45-2.patch
eautoconf
sed \