diff options
author | mharo <mharo@FreeBSD.org> | 2000-04-02 07:42:08 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2000-04-02 07:42:08 +0800 |
commit | ece47faece58d178abf85d0b404a7068d49a4bc8 (patch) | |
tree | 1683177944c2938f14c7b8d3385fc00edb07c64d /devel/gide | |
parent | a2529724ee355215536b211a8e646cae64029c21 (diff) | |
download | freebsd-ports-gnome-ece47faece58d178abf85d0b404a7068d49a4bc8.tar.gz freebsd-ports-gnome-ece47faece58d178abf85d0b404a7068d49a4bc8.tar.zst freebsd-ports-gnome-ece47faece58d178abf85d0b404a7068d49a4bc8.zip |
- Divide patch one file per patch
PR: 17740
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'devel/gide')
-rw-r--r-- | devel/gide/files/patch-ar | 29 | ||||
-rw-r--r-- | devel/gide/files/patch-az | 13 | ||||
-rw-r--r-- | devel/gide/files/patch-ba | 20 |
3 files changed, 61 insertions, 1 deletions
diff --git a/devel/gide/files/patch-ar b/devel/gide/files/patch-ar index 84495497f99f..79b91fa8b1d6 100644 --- a/devel/gide/files/patch-ar +++ b/devel/gide/files/patch-ar @@ -1,5 +1,14 @@ --- src/gide.c.orig Sun Feb 27 00:59:52 2000 -+++ src/gide.c Mon Feb 28 00:50:43 2000 ++++ src/gide.c Sun Apr 2 02:51:26 2000 +@@ -223,7 +223,7 @@ + + cfg->fontname = (gchar *) realloc( cfg->fontname, 100 ); + +- strcpy( cfg->fontname, "-dec-terminal-medium-r-normal-*-*-140-*-*-c-*-iso8859-1" ); ++ strcpy( cfg->fontname, "-dec-terminal-medium-r-normal-*-*-140-*-*-c-*-iso8859-1,*" ); + /* cfg->font = NULL;*/ + cfg->disable_font_stuff = FALSE; + cfg->bgcol = NULL; @@ -260,16 +260,16 @@ cfg->tab_width = 4; @@ -20,3 +29,21 @@ cfg->xterm = (gchar *) realloc( cfg->xterm, 10 ); strcpy( cfg->xterm, "xterm" ); +@@ -298,7 +298,7 @@ + } + cfg->style = gtk_style_new(); + gdk_font_unref( cfg->style->font ); +- cfg->style->font = gdk_font_load( cfg->fontname ); ++ cfg->style->font = gdk_fontset_load( cfg->fontname ); + /* if( !cfg->style->font ) + { + strcpy( cfg->fontname, "default font???" ); +@@ -419,7 +419,7 @@ + } + cfg->style = gtk_style_new(); + gdk_font_unref( cfg->style->font ); +- if( (new_font = gdk_font_load( cfg->fontname )) ) ++ if( (new_font = gdk_fontset_load( cfg->fontname )) ) + { + cfg->style->font = new_font; + } diff --git a/devel/gide/files/patch-az b/devel/gide/files/patch-az new file mode 100644 index 000000000000..5daacf81368e --- /dev/null +++ b/devel/gide/files/patch-az @@ -0,0 +1,13 @@ +--- src/gI_help.c.orig Sun Apr 2 02:47:20 2000 ++++ src/gI_help.c Sun Apr 2 02:52:39 2000 +@@ -370,8 +370,8 @@ + + /* FIXME: We should let the user select which font they want */ + +- normal = gdk_font_load ("-misc-fixed-medium-r-normal-*-*-120-*-*-c-*-iso8859-1"); +- bold = gdk_font_load ("-misc-fixed-bold-r-normal-*-*-120-*-*-c-*-iso8859-1"); ++ normal = gdk_fontset_load ("-misc-fixed-medium-r-normal-*-*-120-*-*-c-*-iso8859-1,*"); ++ bold = gdk_fontset_load ("-misc-fixed-bold-r-normal-*-*-120-*-*-c-*-iso8859-1,*"); + + hbox_man_ctrls = gtk_hbox_new( FALSE, 4 ); + gtk_container_add( GTK_CONTAINER( vbox_main ), hbox_man_ctrls ); diff --git a/devel/gide/files/patch-ba b/devel/gide/files/patch-ba new file mode 100644 index 000000000000..22c29a34ccca --- /dev/null +++ b/devel/gide/files/patch-ba @@ -0,0 +1,20 @@ +--- extra/gide.scm.orig Tue Dec 7 03:32:32 1999 ++++ extra/gide.scm Sun Apr 2 02:53:52 2000 +@@ -23,7 +23,7 @@ + (define tmpdir "/tmp") + + ;; Editor +-(define fontname "-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1") ++(define fontname "-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1,*") + (define disable_font #f) + (define wordwrap #t) + (define autosave #f) +@@ -40,7 +40,7 @@ + (define toolbar-custom #f) + (define toolbar-custom-list + '()) +-(define bash "/bin/bash") ++(define bash "/bin/sh") + (define xterm "xterm") + + ;; Projects |