rpms/tgif/FC-6 tgif-4.1.35-overthespot_fix.patch, NONE, 1.1 tgif-4.1.41.ja.po, NONE, 1.1 tgif-4.1.45-fontcheck.patch, NONE, 1.1 tgif-textcursor-a-urasim.patch, NONE, 1.1 tgif-wrapper.sh, NONE, 1.1 tgif.desktop, NONE, 1.1 tgif.gif, NONE, 1.1 tgif.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Mamoru Tasaka (mtasaka) fedora-extras-commits at redhat.com
Mon Jul 9 18:09:03 UTC 2007


Author: mtasaka

Update of /cvs/extras/rpms/tgif/FC-6
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv8978/FC-6

Modified Files:
	.cvsignore sources 
Added Files:
	tgif-4.1.35-overthespot_fix.patch tgif-4.1.41.ja.po 
	tgif-4.1.45-fontcheck.patch tgif-textcursor-a-urasim.patch 
	tgif-wrapper.sh tgif.desktop tgif.gif tgif.spec 
Log Message:
Initial importing

tgif-4.1.35-overthespot_fix.patch:

--- NEW FILE tgif-4.1.35-overthespot_fix.patch ---
*** tgif-4.1.35/convxim.c	Sun Jan 16 07:23:33 2000
--- tgif-4.1.35-overthespot_fix/convxim.c	Mon Aug 14 09:38:15 2000
***************
*** 106,111 ****
--- 106,112 ----
      char	buf[80];
      XIMStyles *    styles;
      Bool	style_flag;
+     int         style_attr;
      int	i;
      XPoint spot;
      XRectangle s_rect;
***************
*** 171,179 ****
  	if (overthespot) {
  	  for(i = 0; i < (int)(styles->count_styles); i ++){
  	    if(styles->supported_styles[i] ==
! 	       (XIMPreeditPosition | XIMStatusArea)){
  	      style_flag = True;
  	      style_type = OVERTHESPOT;
  	      Msg(TgLoadString(STID_OVERTHESPOT_CONV));
  	    }
  	  }
--- 172,183 ----
  	if (overthespot) {
  	  for(i = 0; i < (int)(styles->count_styles); i ++){
  	    if(styles->supported_styles[i] ==
! 	       (XIMPreeditPosition | XIMStatusArea)
! 	       || (styles->supported_styles[i] ==
! 		   (XIMPreeditPosition | XIMStatusNothing))){
  	      style_flag = True;
  	      style_type = OVERTHESPOT;
+ 	      style_attr = styles->supported_styles[i];
  	      Msg(TgLoadString(STID_OVERTHESPOT_CONV));
  	    }
  	  }
***************
*** 218,224 ****
  					XNFontSet, XIMfs,
  					NULL);
  	ic = XCreateIC(im,
! 	        XNInputStyle , XIMPreeditPosition | XIMStatusArea,
  		XNClientWindow, win,
  		XNFocusWindow, win,
  		XNPreeditAttributes, preedit_attr,
--- 222,228 ----
  					XNFontSet, XIMfs,
  					NULL);
  	ic = XCreateIC(im,
! 	        XNInputStyle , style_attr,
  		XNClientWindow, win,
  		XNFocusWindow, win,
  		XNPreeditAttributes, preedit_attr,


***** Error reading new file: [Errno 2] No such file or directory: 'tgif-4.1.41.ja.po'
tgif-4.1.45-fontcheck.patch:

--- NEW FILE tgif-4.1.45-fontcheck.patch ---
--- tgif-QPL-4.1.45/font.c.fontcheck	2006-06-14 07:29:58.000000000 +0900
+++ tgif-QPL-4.1.45/font.c	2007-01-04 11:28:03.000000000 +0900
@@ -363,16 +363,59 @@ static char	*charCodeToName[] = {
 
 #define InfoIndex(FontIdx,StyleIdx) (((FontIdx)*MAXFONTSTYLES+(StyleIdx))*3)
 
 static int	debugScalableFonts=FALSE; /* debug scalable font */
 static char	gszAttemptedFontName[MAXSTRING+1];
 
 static struct PushedFontRec gstSavedFontInfo;
 
+static Bool IsFontExistent(font_name, dbflag)
+   char *font_name;
+   int dbflag;
+{
+   unsigned char c;
+   unsigned char *buf, *dist, *src;
+   char **font_list;
+   int  actual_count_return;
+
+   if (!font_name)
+       return False;
+
+   buf = (unsigned char*)malloc (strlen(font_name) + 3);
+   if (!buf)
+       return False;
+
+   /* replace "%d" to "*" */
+   dist = buf;
+   if (!dbflag)
+       *dist++ = '*';
+
+   src = font_name;
+   while ((c = *src++)) {
+       if (c == '%' && isalpha(*src))
+	   c = '*', src++;
+       *dist++ = c;
+   }
+   if (!dbflag)
+       *dist++ = '*';
+   *dist = '\0';
+
+   font_list =  XListFonts(mainDisplay, buf, 1, &actual_count_return);
+
+   free(buf);
+   if (font_list)
+       XFreeFontNames(font_list);
+
+   if (actual_count_return)
+       return True;
+   else
+       return False;
+}
+
 int IsFontDoubleByte(font_index)
    int font_index;
 {
    return fontFamilies[font_index].double_byte;
 }
 
 int IsDoubleByteFontVertical(font_index, style)
    int font_index, style;
@@ -2875,27 +2918,29 @@ void InitAdditionalFonts()
       strcpy(buf, c_ptr);
       for (font_ptr=buf; *font_ptr != '\0' &&
             strchr(" ,\t\n\r",*font_ptr) != NULL; font_ptr++) {
       }
       if (font_ptr != NULL && *font_ptr != '\0') {
          int ok=TRUE, index;
          char **font_strings=NULL;
          struct TmpFontFmlyRec *fmly_ptr=NULL;
+         Bool isFontExistent=False;
 
          while (ok && font_ptr != NULL && *font_ptr != '\0') {
             font_strings = (char**)malloc((MAXFONTSTYLES*3)*sizeof(char *));
             if (font_strings == NULL) FailAllocMessage();
             for (i=0, index=0; i<MAXFONTSTYLES; i++) {
                char *rgstry=NULL, *ps_name=NULL, *dup_ptr;
 
                dup_ptr = (font_ptr == NULL ? NULL : UtilStrDup(font_ptr));
                if ((font_ptr=strtok(font_ptr,",\t\n\r")) != NULL &&
                      (rgstry=strtok(NULL,",\t\n\r")) != NULL &&
-                     (ps_name=strtok(NULL," ,\t\n\r")) != NULL) {
+                     (ps_name=strtok(NULL," ,\t\n\r")) != NULL &&
+		     (isFontExistent=IsFontExistent(font_ptr, 0)) == True) {
                   font_strings[index] = (char*)malloc(MAXSTRING*sizeof(char));
                   if (font_strings[index] == NULL) FailAllocMessage();
                   strcpy(font_strings[index], font_ptr);
                   UtilTrimBlanks(font_strings[index++]);
                   font_strings[index] = (char*)malloc(MAXSTRING*sizeof(char));
                   if (font_strings[index] == NULL) FailAllocMessage();
                   strcpy(font_strings[index], rgstry);
                   UtilTrimBlanks(font_strings[index++]);
@@ -2926,23 +2971,34 @@ void InitAdditionalFonts()
                   } else if (rgstry == NULL) {
                      sprintf(gszMsgBox,
                            TgLoadString(STID_INVALID_X_REG_INFO_IN_XDEF),
                            TOOL_NAME, "AdditionalFonts", dup_ptr);
                   } else if (ps_name == NULL) {
                      sprintf(gszMsgBox,
                            TgLoadString(STID_INVALID_PS_INFO_IN_XDEF),
                            TOOL_NAME, "AdditionalFonts", dup_ptr);
-                  }
-                  fprintf(stderr, "%s\n", gszMsgBox);
+                  } else if (isFontExistent == False) {
+		      ok = True;
+#ifdef _TGIF_DBG
+		      sprintf(gszMsgBox,
+			      "Warning: No such font: %s", font_ptr);
+#endif
+		      for (font_ptr=(&ps_name[strlen(ps_name)+1]);
+			   *font_ptr != '\0' && 
+			       strchr(" ,\t\n\r",*font_ptr) != NULL; font_ptr++) {
+		      }
+		  }
+		  if (*gszMsgBox)
+		      fprintf(stderr, "%s\n", gszMsgBox);
                }
                if (dup_ptr != NULL) free(dup_ptr);
                if (!ok) break;
             }
-            if (ok) {
+            if (ok && isFontExistent) {
                num_new_fonts++;
                fmly_ptr = (struct TmpFontFmlyRec *)malloc(
                      sizeof(struct TmpFontFmlyRec));
                if (fmly_ptr == NULL) FailAllocMessage();
                memset(fmly_ptr, 0, sizeof(struct TmpFontFmlyRec));
                fmly_ptr->next = NULL;
                fmly_ptr->prev = last_fmly;
                fmly_ptr->font_strings = font_strings;
@@ -2968,27 +3024,29 @@ void InitAdditionalFonts()
       strcpy(buf, c_ptr);
       for (font_ptr=buf; *font_ptr != '\0' &&
             strchr(" ,\t\n\r",*font_ptr) != NULL; font_ptr++) {
       }
       if (font_ptr != NULL && *font_ptr != '\0') {
          int ok=TRUE, index;
          char **font_strings=NULL;
          struct TmpFontFmlyRec *fmly_ptr=NULL;
+         Bool isFontExistent=False;
 
          while (ok && font_ptr != NULL && *font_ptr != '\0') {
             font_strings = (char**)malloc((MAXFONTSTYLES*3)*sizeof(char *));
             if (font_strings == NULL) FailAllocMessage();
             for (i=0, index=0; i<MAXFONTSTYLES; i++) {
                char *rgstry=NULL, *ps_name=NULL, *dup_ptr;
 
                dup_ptr = (font_ptr == NULL ? NULL : UtilStrDup(font_ptr));
                if ((font_ptr=strtok(font_ptr,",\t\n\r")) != NULL &&
                      (rgstry=strtok(NULL,",\t\n\r")) != NULL &&
-                     (ps_name=strtok(NULL," ,\t\n\r")) != NULL) {
+                     (ps_name=strtok(NULL," ,\t\n\r")) != NULL &&
+                     (isFontExistent=IsFontExistent(font_ptr, 1)) == True) {
                   font_strings[index] = (char*)malloc(MAXSTRING*sizeof(char));
                   if (font_strings[index] == NULL) FailAllocMessage();
                   strcpy(font_strings[index], font_ptr);
                   UtilTrimBlanks(font_strings[index++]);
                   font_strings[index] = (char*)malloc(MAXSTRING*sizeof(char));
                   if (font_strings[index] == NULL) FailAllocMessage();
                   strcpy(font_strings[index], rgstry);
                   UtilTrimBlanks(font_strings[index++]);
@@ -3019,23 +3077,34 @@ void InitAdditionalFonts()
                   } else if (rgstry == NULL) {
                      sprintf(gszMsgBox,
                            TgLoadString(STID_INVALID_X_REG_INFO_IN_XDEF),
                            TOOL_NAME, "SquareDoubleByteFonts", dup_ptr);
                   } else if (ps_name == NULL) {
                      sprintf(gszMsgBox,
                            TgLoadString(STID_INVALID_PS_INFO_IN_XDEF),
                            TOOL_NAME, "SquareDoubleByteFonts", dup_ptr);
-                  }
-                  fprintf(stderr, "%s\n", gszMsgBox);
+                  } else if (isFontExistent == False) {
+		      ok = True;
+#ifdef _TGIF_DBG
+		      sprintf(gszMsgBox,
+			      "Warning: No such font: %s", font_ptr);
+#endif
+		      for (font_ptr=(&ps_name[strlen(ps_name)+1]);
+			   *font_ptr != '\0' && 
+			       strchr(" ,\t\n\r",*font_ptr) != NULL; font_ptr++) {
+		      }
+		  }
+		  if (*gszMsgBox)
+		      fprintf(stderr, "%s\n", gszMsgBox);
                }
                if (dup_ptr != NULL) free(dup_ptr);
                if (!ok) break;
             }
-            if (ok) {
+            if (ok && isFontExistent) {
                num_new_fonts++;
                fmly_ptr = (struct TmpFontFmlyRec *)malloc(
                      sizeof(struct TmpFontFmlyRec));
                if (fmly_ptr == NULL) FailAllocMessage();
                memset(fmly_ptr, 0, sizeof(struct TmpFontFmlyRec));
                fmly_ptr->next = NULL;
                fmly_ptr->prev = last_fmly;
                fmly_ptr->font_strings = font_strings;

tgif-textcursor-a-urasim.patch:

--- NEW FILE tgif-textcursor-a-urasim.patch ---
--- font.c.a-urasim	2006-04-22 21:47:42.000000000 +0900
+++ font.c	2006-04-22 21:48:34.000000000 +0900
@@ -975,10 +975,10 @@
                   (nOdd || ((*psz)&0x80) == nDoubleByte);
                   psz++, nSubStrIndex++) {
                if (nOdd) {
-                  gpszTmpStr16[nDoubleByteIndex].byte2 = (unsigned char)(*psz);
+                  gpszTmpStr16[nDoubleByteIndex].byte2 = (unsigned char)(*psz) & 0x7f;
                   nDoubleByteIndex++;
                } else {
-                  gpszTmpStr16[nDoubleByteIndex].byte1 = (unsigned char)(*psz);
+                  gpszTmpStr16[nDoubleByteIndex].byte1 = (unsigned char)(*psz) & 0x7f;
                }
                nOdd = !nOdd;
             }


--- NEW FILE tgif-wrapper.sh ---
#!/bin/bash

if echo $LANG | grep -q ja_JP ; then
	export LANG=ja_JP.eucJP
fi

exec /usr/libexec/tgif $*



--- NEW FILE tgif.desktop ---
[Desktop Entry]
Encoding=UTF-8
Name=Tgif
Comment=2-D drawling tool
Comment[ja]=2次元ドローイングソフト
Exec=tgif %f
Icon=tgif
Terminal=false
Type=Application
StartupNotify=false
MimeType=application/x-tgif;
Categories=Application;Graphics;VectorGraphics;X-Fedora;


--- NEW FILE tgif.spec ---
%define		Xresource_ja_ver	4.1ja9

Name:		tgif
Version:	4.1.45
Release:	3%{?dist}
Summary:	2-D drawling tool
Group:		Applications/Multimedia

License:	QPL
URL:		http://bourbon.usc.edu/tgif/
Source0:	http://downloads.sourceforge.net/%{name}/%{name}-QPL-%{version}.tar.gz
# Borrowed from Vine Linux
Source1:	tgif-%{Xresource_ja_ver}.tar.gz
Source2:	tgif-4.1.41.ja.po
Source3:	tgif.desktop
Source4:	http://bourbon.usc.edu/tgif/images/%{name}.gif
Source5:	tgif-wrapper.sh
Patch1:		tgif-4.1.45-fontcheck.patch
Patch3:		tgif-4.1.35-overthespot_fix.patch
# http://tyche.pu-toyama.ac.jp/~a-urasim/tgif/
Patch10:	tgif-textcursor-a-urasim.patch
Buildroot:	%{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u} -n)

BuildRequires:	ImageMagick
BuildRequires:	imake
BuildRequires:	desktop-file-utils
BuildRequires:	gettext
BuildRequires:	libXmu-devel
Requires:	ghostscript
Requires:	netpbm-progs

%description
Tgif  -  Xlib based interactive 2-D drawing facility under
X11.  Supports hierarchical construction of  drawings  and
easy  navigation  between  sets  of drawings.  It's also a
hyper-graphics (or hyper-structured-graphics)  browser  on
the World-Wide-Web.

%prep
%setup -q -n %{name}-QPL-%{version} -a 1
%patch1 -p1 -b .fontcheck
%patch3 -p1 -b .overthespot
%patch10 -p0 -b textcursor

%{__cp} -pf %{SOURCE2} po/ja/ja.po
pushd po/ja
%{__perl} -pi \
	-e 's,JISX-0208-1983-0,EUC-JP,g' \
	ja.po
popd

%build
%{__cp} -pf Tgif.tmpl-linux Tgif.tmpl

xmkmf
%{__sed} -i.mode -e 's|0444|0644|' Makefile
DEFOPTS='-DOVERTHESPOT -DUSE_XT_INITIALIZE -D_ENABLE_NLS -DPRINT_CMD=\"lpr\" -DA4PAPER'
%{__make} %{?_smp_mflags} \
	CC="%{__cc} %{optflags}" \
	MOREDEFINES="$DEFOPTS" \
	TGIFDIR=%{_datadir}/tgif/ \
	LOCAL_LIBRARIES="-lXmu -lXt -lX11" \
	tgif

pushd po
xmkmf 
%{__sed} -i.mode -e 's|0444|0644|' Makefile
%{__make} \
	Makefile \
	Makefiles \
	depend \
	all
popd

%install
%{__rm} -rf $RPM_BUILD_ROOT/
# wrap xgif
%{__make} \
	DESTDIR=$RPM_BUILD_ROOT/ \
	BINDIR=%{_libexecdir}/ \
	TGIFDIR=%{_datadir}/tgif/ \
	INSTALLFLAGS="-cp" \
	install \
	install.man
%{__mkdir_p} $RPM_BUILD_ROOT%{_bindir}/
%{__install} -cpm 0755 %{SOURCE5} $RPM_BUILD_ROOT%{_bindir}/%{name}

%{__rm} -f $RPM_BUILD_ROOT%{_datadir}/tgif/*.obj
%{__install} -cpm 0644 *.obj \
	$RPM_BUILD_ROOT%{_datadir}/tgif/

%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/X11/{,ja/}app-defaults/
%{__install} -cpm 0644 tgif-%{Xresource_ja_ver}/C/Tgif.ad \
	$RPM_BUILD_ROOT%{_datadir}/X11/app-defaults/Tgif
%{__install} -cpm 0644 tgif-%{Xresource_ja_ver}/ja/Tgif.ad \
	$RPM_BUILD_ROOT%{_datadir}/X11/ja/app-defaults/Tgif

pushd po
%{__make} \
	DESTDIR=$RPM_BUILD_ROOT/ \
	INSTALLFLAGS="-cp" \
	install
popd

# desktop file & icon
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/applications/
desktop-file-install \
	--remove-category 'Application' \
	--remove-category 'X-Fedora' \
	--vendor 'fedora' \
	--dir $RPM_BUILD_ROOT%{_datadir}/applications/ \
	%{SOURCE3}

%{__mkdir_p} %{buildroot}%{_datadir}/pixmaps/
convert -geometry 64x64! %{SOURCE4} %{name}.png
%{__install} -cpm644 %{name}.png \
	$RPM_BUILD_ROOT/%{_datadir}/pixmaps/

%{find_lang} tgif

%clean
%{__rm} -rf $RPM_BUILD_ROOT/

%post
%{_bindir}/update-desktop-database -q %{_datadir}/applications/ ||:

%postun
%{_bindir}/update-desktop-database -q %{_datadir}/applications/ ||:

%files -f %{name}.lang
%defattr(-,root,root,-)
%doc Copyright HISTORY LICENSE.QPL
%doc README* 
%doc VMS_MAKE_TGIF.COM 
%doc example.tex 
%doc %{name}-%{Xresource_ja_ver}/README.jp

%{_bindir}/%{name}
%{_libexecdir}/%{name}
%{_mandir}/man1/%{name}.1x*

%{_datadir}/%{name}/
%{_datadir}/X11/app-defaults/Tgif
# Currently no package owns the following directories
%dir %{_datadir}/X11/ja/
%dir %{_datadir}/X11/ja/app-defaults/
%{_datadir}/X11/ja/app-defaults/Tgif

%{_datadir}/pixmaps/%{name}.png
%{_datadir}/applications/*-%{name}.desktop

%changelog
* Mon Jul  9 2007 TASAKA Mamoru <mtasaka at ioa.s.u-tokyo.ac.jp> - 4.1.45-3
- Clean up BuildRequies

* Thu Jul  5 2007 TASAKA Mamoru <mtasaka at ioa.s.u-tokyo.ac.jp> - 4.1.45-2
- Explicitly set LANG=ja_JP.eucJP on ja_JP locale
- Add needed Requires

* Thu Jul  5 2007 TASAKA Mamoru <mtasaka at ioa.s.u-tokyo.ac.jp> - 4.1.45-1
- Clean up for Fedora

* Thu Jan  4 2007 MATSUURA Takanori <t.matsuu at gmail.com> - 4.1.45-0vl5.1
- based on tgif-4.1.44-0vl5.src.rpm from VineSeed main
- update to 4.1.45
- some ajustments for Fedora Core

* Wed Dec 27 2006 KAZUKI SHIMURA <kazuki at ma.ccnw.ne.jp> 4.1.44-0vl5
- add tgificon.png (source4)
- update tgif.desktop (source3)

* Wed Oct 11 2006 Daisuke SUZUKI <daisuke at linux.or.jp> 4.1.44-0vl4
- add Patch10 to fix text cursor problem (<BTS:250>)
  http://tyche.pu-toyama.ac.jp/~a-urasim/tgif/

* Fri Sep 08 2006 KAZUKI SHIMURA <kazuki at ma.ccnw.ne.jp> 4.1.44-0vl3
- add and update desktop file (source3)
- move desktop file to %%{_datadir}/applications
- exec update-desktop-database at %%post,%%postun
- add Requires(post,postun): desktop-file-utils

* Sat Sep 02 2006 KAZUKI SHIMURA <kazuki at ma.ccnw.ne.jp> 4.1.44-0vl2
- add BuildRequires: XOrg-devel

* Mon Jan 17 2005 Daisuke SUZUKI <daisuke at linux.or.jp> 4.1.44-0vl1
- switch to QPL version

* Thu Jun 10 2004 KOBAYASHI R. Taizo <tkoba at vinelinux.org> 4.1.43-0vl1
- source update

* Thu Jun 12 2003 Ryoichi INAGAKI <ryo1 at bc.wakwak.com> 4.1.42-0vl2
- rebuild with new toolchains

* Fri Mar 29 2002 Jun Nishii <jun at vinelinux.org> 4.1.41-0vl3
- add Tate-gaki entry for Ricoh fonts

* Sun Mar 17 2002 Shoji Matsumoto <shom at vinelinux.org> 4.1.41-0vl2
- refine Tgif.ad for Vine 2.5

* Fri Oct 19 2001 Jun Nishii <jun at vinelinux.org> 4.1.41-0vl1
- ver.up 

* Thu Jul 28 2001 Shoji Matsumoto <shom at vinelinux.org>
- 4.1.40-0vl2
- tgif-4.1ja6 (-aliastt-{mincho,gothic}- -> -alias-{mincho,gothic}-)

* Thu Dec  7 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.40-0vl1

* Tue Oct  3 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.39-0vl2
- added documents

* Sun Sep 10 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.39-0vl1

* Thu Aug 17 2000 Yasuyuki Furukawa <furukawa at vinelinux.org>
- added overthespot_fix patch for XIM with OverTheSpot style.

* Fri Aug 11 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.36-0vl1

* Mon Aug  7 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.35-0vl1

* Sat Jul 15 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin at rhythmaning.org>
- 4.1.34-0vl2
- modified %%files section to handle compressed man page

* Mon May  8 2000 Jun Nishii <jun at vinelinux.org>
- updated 4.0.33

* Thu Apr 20 2000 Yasuyuki Furukawa <furukawa at vinelinux.org>
- updated 4.0.29
- modified fontcheck patch to check signgle byte font, too.

* Thu Mar  9 2000 Yasuyuki Furukawa <furukawa at vinelinux.org>
- updated 4.0.28

* Mon Feb 28 2000 Yasuyuki Furukawa <furukawa at vinelinux.org>
- updated 4.0.27

* Thu Feb 24 2000 Yasuyuki Furukawa <furukawa at vinelinux.org>
- added tgif wmconfig, desktop file

* Fri Feb 18 2000 Yasuyuki Furukawa <furukawa at vinelinux.org>
- added xim unofficial patch from fj.sources to fix a bug about XIM.

* Wed Feb 16 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.26-0vl3
- bug fix in tgif-4.1.26-fontcheck.patch 

* Mon Feb 14 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.26-0vl2
- merge tgif-4.1.26-fontcheck.patch by Mr. Yasuyuki Furukawa 
  which obsoletes trigger for Dynafonts and TrueTypeFonts !

* Thu Jan 20 2000 Jun Nishii <jun at vinelinux.org>
- 4.1.26-0vl2
- added trigger for Dynafonts and TrueTypeFonts

* Thu Jan 20 2000 Yasuyuki Furukawa <furukawa at vinelinux.org>
- updated to 4.1.26
- change ja resource from ja_JP.ujis/app-defaults to ja/app-defaults
- modified font setting

* Wed Nov 17 1999 Jun Nishii <jun at flatout.org>
- updated to 4.1.25

* Thu Nov 4 1999 Jun Nishii <jun at flatout.org>
- updated to 4.1.23

* Thu Oct 28 1999 Jun Nishii <jun at flatout.org>
- rel.4
- update ja.po
- more gettextize in choice.c and menu.c

* Wed Oct 27 1999 Jun Nishii <jun at flatout.org>
- rel.3 
- merge messages in strtbl.c and added japanese catalog

* Tue Oct 26 1999 Jun Nishii <jun at flatout.org>
- rel.2
- enable nls in status buffer and added japanese catalog

* Tue Oct 26 1999 Jun Nishii <jun at flatout.org>
- updated to 4.1.22

* Sun Aug 8 1999 Norihito Ohmori <ohmori at flatout.org>
- archive format change to bzip2
- rebuild for glibc-2.1.x

* Wed Jun 30 1999 Jun Nishii <jun at flatout.org>
- updated to 4.1.16

* Tue Apr 15 1999 Jun Nishii <jun at flatout.org>
- updated to 4.1.7

* Tue Apr 8 1999 Jun Nishii <jun at flatout.org>
- updated to 4.1.6
- Our menufontset-nls patch and xim patch were merged in original source!

* Tue Mar  9 1999 MATSUMOTO Shoji <vine at flatout.org>
- vertical font indicator bug fix
- modify resource and tgif.sh

* Mon Mar 8 1999 Jun Nishii <jun at flatout.org>
- updated to 4.1

* Mon Mar 8 1999 Jun Nishii <jun at flatout.org>
- bug fix in showing shortcut key in menu
- modify document

* Wed Mar  4 1999 MATSUMOTO Shoji <vine at flatout.org>
- set Tgif.InitialFont Ryumin

* Wed Mar  3 1999 MATSUMOTO Shoji <vine at flatout.org>
- add XIM OverTheSpot patch
- modify Tgif-ja.ad

* Mon Mar 2 1999 Jun Nishii <jun at flatout.org>
- updated to 4.0.18

* Mon Mar 1 1999 Jun Nishii <jun at flatout.org>
- make patch to support fontset and nls
- change version name as 4.0.17_jp 

* Sat Feb 27 1999 Jun Nishii <jun at flatout.org>
- modify Tgif-ja.ad (use A4,cm,color-icon,etc...)
- correct document

* Wed Feb 24 1999 Jun Nishii <jun at flatout.org>
- updated to ver. 4.0.17 
- make wrapper to read Tgif-ja

* Sat Feb 20 1999 Jun Nishii <jun at flatout.org>
- updated to ver. 4.0.16

* Tue Feb 16 1999 Jun Nishii <jun at flatout.org>
- build ver. 4.0.14 for Vine Linux


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/tgif/FC-6/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	9 Jul 2007 17:28:32 -0000	1.1
+++ .cvsignore	9 Jul 2007 18:08:27 -0000	1.2
@@ -0,0 +1,2 @@
+tgif-4.1ja9.tar.gz
+tgif-QPL-4.1.45.tar.gz


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/tgif/FC-6/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	9 Jul 2007 17:28:32 -0000	1.1
+++ sources	9 Jul 2007 18:08:27 -0000	1.2
@@ -0,0 +1,2 @@
+da4d40a12c5053ed73336e041e7a6a93  tgif-4.1ja9.tar.gz
+5c1eba8291385c630b8099fa9b042455  tgif-QPL-4.1.45.tar.gz




More information about the fedora-extras-commits mailing list