transfig package update
Signed-off-by: basebuilder_pel7ppc64bebuilder0 <basebuilder@powerel.org>master
parent
d2d70244b1
commit
ae748edad4
|
@ -0,0 +1,13 @@
|
|||
diff --git a/fig2dev/Imakefile b/fig2dev/Imakefile
|
||||
index 2f76e0b..7e07c39 100755
|
||||
--- a/fig2dev/Imakefile
|
||||
+++ b/fig2dev/Imakefile
|
||||
@@ -229,7 +229,7 @@ install::
|
||||
else (set -x; $(MKDIRHIER) $(DESTDIR)$(XFIGLIBDIR)/bitmaps ); fi ; \
|
||||
echo Copying bitmap files for tk to $(DESTDIR)$(XFIGLIBDIR)/bitmaps ; \
|
||||
for f in * ; do \
|
||||
- $(INSTALL) -c $$f $(DESTDIR)$(XFIGLIBDIR)/bitmaps ; \
|
||||
+ $(INSTALL) -c $(INSTDATFLAGS) $$f $(DESTDIR)$(XFIGLIBDIR)/bitmaps ; \
|
||||
done) ;
|
||||
|
||||
install.all::
|
|
@ -0,0 +1,37 @@
|
|||
Index: transfig.3.2.5d/fig2dev/dev/readpng.c
|
||||
===================================================================
|
||||
--- transfig.3.2.5d.orig/fig2dev/dev/readpng.c
|
||||
+++ transfig.3.2.5d/fig2dev/dev/readpng.c
|
||||
@@ -62,7 +62,7 @@ read_png(file,filetype,pic,llx,lly)
|
||||
}
|
||||
|
||||
/* set long jump here */
|
||||
- if (setjmp(png_ptr->jmpbuf)) {
|
||||
+ if (setjmp(png_jmpbuf(png_ptr))) {
|
||||
/* if we get here there was a problem reading the file */
|
||||
png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
|
||||
return 0;
|
||||
@@ -78,15 +78,17 @@ read_png(file,filetype,pic,llx,lly)
|
||||
png_get_IHDR(png_ptr, info_ptr, &w, &h, &bit_depth, &color_type,
|
||||
&interlace_type, &compression_type, &filter_type);
|
||||
|
||||
- if (info_ptr->valid & PNG_INFO_gAMA)
|
||||
- png_set_gamma(png_ptr, 2.2, info_ptr->gamma);
|
||||
- else
|
||||
- png_set_gamma(png_ptr, 2.2, 0.45);
|
||||
+ png_fixed_point gamma = 0.45;
|
||||
+ png_get_gAMA_fixed(png_ptr,info_ptr,&gamma);
|
||||
+ png_set_gamma(png_ptr, 2.2, gamma);
|
||||
|
||||
- if (info_ptr->valid & PNG_INFO_bKGD)
|
||||
+ if (png_get_valid(png_ptr,info_ptr,PNG_INFO_bKGD)) {
|
||||
/* set the background to the one supplied */
|
||||
- png_set_background(png_ptr, &info_ptr->background,
|
||||
+ png_color_16p background;
|
||||
+ png_get_bKGD(png_ptr,info_ptr,&background);
|
||||
+ png_set_background(png_ptr, background,
|
||||
PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
|
||||
+ }
|
||||
else {
|
||||
/* blend the canvas background using the alpha channel */
|
||||
if (bgspec) {
|
|
@ -0,0 +1,31 @@
|
|||
diff --git a/fig2dev/Imakefile b/fig2dev/Imakefile
|
||||
index 90d67ca..2f76e0b 100755
|
||||
--- a/fig2dev/Imakefile
|
||||
+++ b/fig2dev/Imakefile
|
||||
@@ -34,7 +34,7 @@ XCOMM ******
|
||||
XCOMM You should point XFIGLIBDIR to the same directory you did when you compiled
|
||||
XCOMM and installed xfig.
|
||||
|
||||
-XFIGLIBDIR = /usr/local/lib/X11/xfig
|
||||
+XFIGLIBDIR = $(PROJECTROOT)/share/xfig
|
||||
|
||||
XCOMM ******
|
||||
XCOMM If your system doesn't have the strerror() function (has sys_errlist) then
|
||||
@@ -62,7 +62,7 @@ XCOMM Note that this changed slightly from the previous versions - you need
|
||||
XCOMM the full name (rgb.txt) now.
|
||||
XCOMM
|
||||
|
||||
-RGB = $(LIBDIR)/rgb.txt
|
||||
+RGB = $(PROJECTROOT)/share/X11/rgb.txt
|
||||
|
||||
XCOMM Comment out the following #define USEPNG if you don't want PNG support
|
||||
XCOMM Uncomment the #define for USEPNG if you want to be able to import
|
||||
@@ -141,7 +141,7 @@ XCOMM Comment out the next line if you have any problems with locale not being f
|
||||
|
||||
#ifdef I18N
|
||||
I18N_DEFS = -DI18N
|
||||
-FIG2DEV_LIBDIR = /usr/local/lib/fig2dev
|
||||
+FIG2DEV_LIBDIR = $(PROJECTROOT)/share/fig2dev
|
||||
I18N_DEV_DEFS = $(I18N_DEFS) -DFIG2DEV_LIBDIR=$(FIG2DEV_LIBDIR) -DFIG2DEV_LIBDIR_STR=\\\"$(FIG2DEV_LIBDIR)\\\"
|
||||
|
||||
#endif /* I18N */
|
|
@ -0,0 +1,13 @@
|
|||
diff --git a/Imakefile b/Imakefile
|
||||
index 5e44c8a..2f7fc4d 100755
|
||||
--- a/Imakefile
|
||||
+++ b/Imakefile
|
||||
@@ -22,7 +22,7 @@ XCOMM to make transfig and fig2dev:
|
||||
XCOMM type "xmkmf", "make Makefiles", "make" then "make install"
|
||||
|
||||
#define IHaveSubdirs
|
||||
-#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'
|
||||
+#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS) $(RPM_OPT_FLAGS)'
|
||||
|
||||
DEPLIBS =
|
||||
SUBDIRS = fig2dev transfig
|
|
@ -0,0 +1,25 @@
|
|||
From 824eff7e2ce2b1a64ec1406a04aeedf10456e9da Mon Sep 17 00:00:00 2001
|
||||
From: Kamil Dudka <kdudka@redhat.com>
|
||||
Date: Thu, 9 Aug 2012 16:46:34 +0200
|
||||
Subject: [PATCH] read_textobject: limit the input when reading to a fixed-size buffer
|
||||
|
||||
---
|
||||
fig2dev/read1_3.c | 2 +-
|
||||
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||
|
||||
diff --git a/fig2dev/read1_3.c b/fig2dev/read1_3.c
|
||||
index 28951e8..5b9d770 100644
|
||||
--- a/fig2dev/read1_3.c
|
||||
+++ b/fig2dev/read1_3.c
|
||||
@@ -451,7 +451,7 @@ FILE *fp;
|
||||
t->pen = 0;
|
||||
t->angle = 0.0;
|
||||
t->next = NULL;
|
||||
- n = fscanf(fp," %d %lf %d %lf %lf %d %d %[^\n]", &t->font,
|
||||
+ n = fscanf(fp," %d %lf %d %lf %lf %d %d %127[^\n]", &t->font,
|
||||
&t->size, &t->flags, &t->height, &t->length,
|
||||
&t->base_x, &t->base_y, buf);
|
||||
if (n != 8) {
|
||||
--
|
||||
1.7.1
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
From f9a1476538bcd46d38e0d8656c037f49bf4b042f Mon Sep 17 00:00:00 2001
|
||||
From: Kamil Dudka <kdudka@redhat.com>
|
||||
Date: Tue, 3 Dec 2013 16:27:20 +0100
|
||||
Subject: [PATCH] Resolves: #1037365 - make it compile with -Werror=format-security
|
||||
|
||||
---
|
||||
fig2dev/dev/gencgm.c | 2 +-
|
||||
fig2dev/dev/genmp.c | 4 ++--
|
||||
fig2dev/trans_spline.c | 4 ++--
|
||||
3 files changed, 5 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/fig2dev/dev/gencgm.c b/fig2dev/dev/gencgm.c
|
||||
index cdb28f9..83494de 100644
|
||||
--- a/fig2dev/dev/gencgm.c
|
||||
+++ b/fig2dev/dev/gencgm.c
|
||||
@@ -139,7 +139,7 @@ gencgm_start(objects)
|
||||
|
||||
if (from) {
|
||||
figname = malloc(strlen(from)+1);
|
||||
- sprintf(figname, from);
|
||||
+ sprintf(figname, "%s", from);
|
||||
p = strrchr(figname, '/');
|
||||
if (p)
|
||||
figname = p+1; /* remove path from name for comment in file */
|
||||
diff --git a/fig2dev/dev/genmp.c b/fig2dev/dev/genmp.c
|
||||
index 7697ce4..83c3b7f 100644
|
||||
--- a/fig2dev/dev/genmp.c
|
||||
+++ b/fig2dev/dev/genmp.c
|
||||
@@ -1150,7 +1150,7 @@ F_text *t;
|
||||
}
|
||||
} else {
|
||||
/* special text in latex mode: just write the text. */
|
||||
- fprintf(tfp, t->cstring);
|
||||
+ fprintf(tfp, "%s", t->cstring);
|
||||
}
|
||||
fprintf(tfp," etex;\n");
|
||||
|
||||
@@ -1164,7 +1164,7 @@ F_text *t;
|
||||
|
||||
fprintf(tfp," picture q;\n");
|
||||
fprintf(tfp," q=thelabel.urt(\"");
|
||||
- fprintf(tfp, t->cstring);
|
||||
+ fprintf(tfp, "%s", t->cstring);
|
||||
fprintf(tfp, "\" infont ");
|
||||
if (t->font<0) {
|
||||
fprintf(tfp, "defaultfont");
|
||||
diff --git a/fig2dev/trans_spline.c b/fig2dev/trans_spline.c
|
||||
index 7c0da8f..c347fc1 100644
|
||||
--- a/fig2dev/trans_spline.c
|
||||
+++ b/fig2dev/trans_spline.c
|
||||
@@ -648,7 +648,7 @@ create_cpoint()
|
||||
F_control *cp;
|
||||
|
||||
if ((cp = (F_control *) malloc(CONTROL_SIZE)) == NULL)
|
||||
- fprintf(stderr,Err_mem);
|
||||
+ put_msg(Err_mem);
|
||||
return cp;
|
||||
}
|
||||
|
||||
@@ -659,7 +659,7 @@ create_line()
|
||||
F_line *l;
|
||||
|
||||
if ((l = (F_line *) malloc(LINOBJ_SIZE)) == NULL)
|
||||
- fprintf(stderr,Err_mem);
|
||||
+ put_msg(Err_mem);
|
||||
l->pic = NULL;
|
||||
l->next = NULL;
|
||||
l->for_arrow = NULL;
|
||||
--
|
||||
1.7.1
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
--- transfig.3.2.5d/fig2dev/dev/readpng.orig.c 2015-11-14 02:57:30.689827624 +0100
|
||||
+++ transfig.3.2.5d/fig2dev/dev/readpng.c 2015-11-14 03:48:01.893942375 +0100
|
||||
@@ -78,8 +78,10 @@
|
||||
png_get_IHDR(png_ptr, info_ptr, &w, &h, &bit_depth, &color_type,
|
||||
&interlace_type, &compression_type, &filter_type);
|
||||
|
||||
- png_fixed_point gamma = 0.45;
|
||||
- png_get_gAMA_fixed(png_ptr,info_ptr,&gamma);
|
||||
+ double gamma;
|
||||
+ if (!png_get_gAMA(png_ptr, info_ptr, &gamma)) {
|
||||
+ gamma = 0.45455;
|
||||
+ }
|
||||
png_set_gamma(png_ptr, 2.2, gamma);
|
||||
|
||||
if (png_get_valid(png_ptr,info_ptr,PNG_INFO_bKGD)) {
|
|
@ -0,0 +1,41 @@
|
|||
From 422f2a135d904556a441210f16d22e1ee82baa1b Mon Sep 17 00:00:00 2001
|
||||
From: Kamil Dudka <kdudka@redhat.com>
|
||||
Date: Mon, 8 Aug 2011 11:43:29 +0200
|
||||
Subject: [PATCH] transfig - rhbz #728825
|
||||
|
||||
---
|
||||
fig2dev/dev/genpdf.c | 9 ++++++---
|
||||
1 files changed, 6 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/fig2dev/dev/genpdf.c b/fig2dev/dev/genpdf.c
|
||||
index 37f4fe4..fe949ce 100644
|
||||
--- a/fig2dev/dev/genpdf.c
|
||||
+++ b/fig2dev/dev/genpdf.c
|
||||
@@ -67,18 +67,21 @@ F_compound *objects;
|
||||
int
|
||||
genpdf_end()
|
||||
{
|
||||
+ int status;
|
||||
+
|
||||
/* wrap up the postscript output */
|
||||
if (genps_end() != 0)
|
||||
return -1; /* error, return now */
|
||||
|
||||
- if (pclose(tfp) != 0) {
|
||||
+ status = pclose(tfp);
|
||||
+ /* we've already closed the original output file */
|
||||
+ tfp = 0;
|
||||
+ if (status != 0) {
|
||||
fprintf(stderr,"Error in ghostcript command\n");
|
||||
fprintf(stderr,"command was: %s\n", gscom);
|
||||
return -1;
|
||||
}
|
||||
(void) signal(SIGPIPE, SIG_DFL);
|
||||
- /* we've already closed the original output file */
|
||||
- tfp = 0;
|
||||
|
||||
/* all ok so far */
|
||||
|
||||
--
|
||||
1.7.4.4
|
||||
|
|
@ -0,0 +1,299 @@
|
|||
Summary: Utility for converting FIG files (made by xfig) to other formats
|
||||
Name: transfig
|
||||
Version: 3.2.5d
|
||||
Release: 13%{?dist}
|
||||
Epoch: 1
|
||||
License: MIT
|
||||
URL: http://www.xfig.org/
|
||||
Group: Applications/Multimedia
|
||||
Source0: http://downloads.sourceforge.net/mcj/%{name}.%{version}.tar.gz
|
||||
|
||||
Patch0: transfig-3.2.5-optflags.patch
|
||||
Patch1: transfig-3.2.5-modularX.patch
|
||||
Patch2: transfig-3.2.5-bitmap.patch
|
||||
Patch3: transfig-3.2.5d-bz728825.patch
|
||||
Patch4: transfig-3.2.5-libpng.patch
|
||||
Patch5: transfig-3.2.5d-CVE-2009-4227.patch
|
||||
|
||||
Requires: ghostscript
|
||||
Requires: bc
|
||||
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: libjpeg-devel
|
||||
BuildRequires: libXpm-devel
|
||||
BuildRequires: imake
|
||||
|
||||
%description
|
||||
The transfig utility creates a makefile which translates FIG (created
|
||||
by xfig) or PIC figures into a specified LaTeX graphics language (for
|
||||
example, PostScript(TM)). Transfig is used to create TeX documents
|
||||
which are portable (i.e., they can be printed in a wide variety of
|
||||
environments).
|
||||
|
||||
Install transfig if you need a utility for translating FIG or PIC
|
||||
figures into certain graphics languages.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}.%{version}
|
||||
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
%patch4 -p1 -b .libpng
|
||||
%patch5 -p1
|
||||
|
||||
# fix source permissions
|
||||
find -type f -exec chmod -x {} \;
|
||||
|
||||
# remove garbage
|
||||
rm -f doc/manual/Makefile.orig doc/fig2dev.1.orig
|
||||
|
||||
%build
|
||||
xmkmf
|
||||
make Makefiles
|
||||
make
|
||||
|
||||
%install
|
||||
make DESTDIR=%{buildroot} MANSUFFIX=1 install install.man
|
||||
|
||||
# fig2ps2tex{,.sh} are equivalent, use the sh one
|
||||
mv %{buildroot}%{_bindir}/fig2ps2tex.sh %{buildroot}%{_bindir}/fig2ps2tex
|
||||
ln -s fig2ps2tex %{buildroot}%{_bindir}/fig2ps2tex.sh
|
||||
ln -s fig2ps2tex.1 %{buildroot}%{_mandir}/man1/fig2ps2tex.sh.1
|
||||
|
||||
%files
|
||||
%doc CHANGES NOTES README LATEX.AND.XFIG
|
||||
%{_bindir}/transfig
|
||||
%{_bindir}/fig2dev
|
||||
%{_bindir}/fig2ps2tex
|
||||
%{_bindir}/fig2ps2tex.sh
|
||||
%{_bindir}/pic2tpic
|
||||
%{_mandir}/man1/*
|
||||
%{_datadir}/xfig
|
||||
%{_datadir}/fig2dev
|
||||
|
||||
%changelog
|
||||
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:3.2.5d-13
|
||||
- Mass rebuild 2014-01-24
|
||||
|
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:3.2.5d-12
|
||||
- Mass rebuild 2013-12-27
|
||||
|
||||
* Wed May 15 2013 Kamil Dudka <kdudka@redhat.com> - 1:3.2.5d-11
|
||||
- install man pages using the correct file name suffix
|
||||
- provide the fig2ps2tex.sh man page as a symlink
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.5d-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 1:3.2.5d-9
|
||||
- fix specfile issues reported by the fedora-review script
|
||||
|
||||
* Thu Aug 09 2012 Kamil Dudka <kdudka@redhat.com> - 1:3.2.5d-8
|
||||
- fix buffer overflow on loading a malformed .fig file (CVE-2009-4227)
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.5d-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Tue Feb 14 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1:3.2.5d-6
|
||||
- add Gentoo patch to fix compilation with libpng 1.5
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.5d-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 1:3.2.5d-4
|
||||
- Rebuild for new libpng
|
||||
|
||||
* Tue Aug 09 2011 Kamil Dudka <kdudka@redhat.com> - 1:3.2.5d-3
|
||||
- fix crash of fig2dev on a failure of ghostscript (#728825)
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.5d-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Nov 04 2010 Kamil Dudka <kdudka@redhat.com> - 1:3.2.5d-1
|
||||
- new upstream release (#546623)
|
||||
|
||||
* Wed Mar 03 2010 Kamil Dudka <kdudka@redhat.com> - 1:3.2.5c-1
|
||||
- new upstream release
|
||||
- patch to generate comments compliant with DSC 3.0, thanks to Ian Dall
|
||||
(#558380)
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.5-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Tue May 5 2009 Ville Skyttä <ville.skytta at iki.fi> - 1:3.2.5-7
|
||||
- Get rid of csh dependency, add missing one on bc (#435993).
|
||||
- Build with $RPM_OPT_FLAGS (#329831).
|
||||
- Convert specfile to UTF-8.
|
||||
- Add URL, fix source URL.
|
||||
- Escape macros in changelog.
|
||||
- Improve summary.
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.2.5-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Sat Dec 20 2008 Ralf Corsépius <corsepiu@fedoraproject.org> - 1:3.2.5-5
|
||||
- Add transfig-3.2.5-bitmap.patch, tweak permission on sources (BZ #209865).
|
||||
|
||||
* Wed Sep 10 2008 Stepan Kasal <skasal@redhat.com> - 1:3.2.5-4
|
||||
- remove transfig.3.2.4-pstex.patch, which reintroduced #164140
|
||||
at the update to 3.2.5
|
||||
|
||||
* Mon Sep 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1:3.2.5-3
|
||||
- fix license tag
|
||||
|
||||
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:3.2.5-2
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Mon Apr 16 2007 Than Ngo <than@redhat.com> - 1:3.2.5-1.fc7
|
||||
- 3.2.5
|
||||
|
||||
* Wed Aug 16 2006 Stepan Kasal <skasal@redhat.com> - 1:3.2.4-16
|
||||
- Require ghostscript; fig2dev calls it.
|
||||
|
||||
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.4-15.1
|
||||
- rebuild
|
||||
|
||||
* Tue May 16 2006 Than Ngo <than@redhat.com> 3.2.4-15
|
||||
- fix #164140, transfig creates wrong dependencies for -L pstex
|
||||
|
||||
* Tue May 16 2006 Than Ngo <than@redhat.com> 3.2.4-14
|
||||
- fix #191825, buildrequire on imake
|
||||
- fix #173748, fig2dev still refers to /usr/X11R6/lib/X11/rgb.txt
|
||||
|
||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.4-13.2
|
||||
- bump again for double-long bug on ppc(64)
|
||||
|
||||
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:3.2.4-13.1
|
||||
- rebuilt for new gcc4.1 snapshot and glibc changes
|
||||
|
||||
* Mon Dec 19 2005 Than Ngo <than@redhat.com> 3.2.4-13
|
||||
- fix build problem with modular X
|
||||
|
||||
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Tue Nov 15 2005 Than Ngo <than@redhat.com> 1:3.2.4-12
|
||||
- fix for modular X
|
||||
|
||||
* Sat Mar 05 2005 Than Ngo <than@redhat.com> 1:3.2.4-11
|
||||
- rebuild
|
||||
|
||||
* Tue Nov 30 2004 Than Ngo <than@redhat.com> 1:3.2.4-10
|
||||
- fix compiler warnings #111394
|
||||
- fix broken language selection #114849
|
||||
|
||||
* Tue Nov 30 2004 Than Ngo <than@redhat.com> 1:3.2.4-9
|
||||
- add patch to fix getrgb #117099
|
||||
|
||||
* Mon Oct 18 2004 Miloslav Trmac <mitr@redhat.com> - 1:3.2.4-8
|
||||
- Fix at least a few obvious instances of C abuse (partly #74594 with patch by
|
||||
Sysoltsev Slawa)
|
||||
- Drop -Dcfree=free fix, not needed with current version
|
||||
|
||||
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Tue Jun 17 2003 Than Ngo <than@redhat.com> 3.2.4-4
|
||||
- patch build problem
|
||||
|
||||
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri May 23 2003 Jeremy Katz <katzj@redhat.com> 1:3.2.4-2
|
||||
- fix build with gcc 3.3
|
||||
|
||||
* Tue May 6 2003 Than Ngo <than@redhat.com> 3.2.4-1
|
||||
- 3.2.4
|
||||
|
||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Mon Nov 18 2002 Than Ngo <than@redhat.com> 3.2.3d-8
|
||||
- Added a patch file from d.binderman@virgin.net (bug #77980)
|
||||
|
||||
* Wed Jul 31 2002 Than Ngo <than@redhat.com> 3.2.3d-7
|
||||
- fig2dev crashes with more than 1 gif files (bug #69917)
|
||||
|
||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Fri Jun 14 2002 han Ngo <than@redhat.com> 3.2.3d-5
|
||||
- fhs fixes (bug #66732)
|
||||
|
||||
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Mon Jul 23 2001 Than Ngo <than@redhat.com>
|
||||
- fix build dependencies (bug #49725)
|
||||
- Copyright -> License
|
||||
|
||||
* Fri Jun 15 2001 Than Ngo <than@redhat.com>
|
||||
- update to 3.2.3d release (Bug # 44742)
|
||||
|
||||
* Tue May 29 2001 Than Ngo <than@redhat.com>
|
||||
- update to 3.2.3d beta2
|
||||
|
||||
* Fri Apr 13 2001 Than Ngo <than@redhat.com>
|
||||
- fix core dump when using LDAP auth
|
||||
- update ftp site
|
||||
|
||||
* Mon Dec 18 2000 Yukihiro Nakai <ynakai@redhat.com>
|
||||
- Enable Japanese
|
||||
|
||||
* Sat Aug 05 2000 Than Ngo <than@redhat.de>
|
||||
- update to 3.2.3c (Bug fixed release)
|
||||
|
||||
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
||||
- automatic rebuild
|
||||
|
||||
* Tue Jun 13 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
||||
- make it build as nobody. Imake sucks.
|
||||
- include LATEX.AND.XFIG
|
||||
- use %%{_tmppath}
|
||||
|
||||
* Wed Apr 26 2000 Matt Wilson <msw@redhat.com>
|
||||
- add enable_japanese option, disable it for now.
|
||||
|
||||
* Sun Apr 16 2000 Bryan C. Andregg <bandregg@redhat.com>
|
||||
- new version to support -b and -g which xfig uses
|
||||
|
||||
* Mon Feb 7 2000 Bill Nottingham <notting@redhat.com>
|
||||
- handle compressed manpages
|
||||
|
||||
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
||||
- auto rebuild in the new build environment (release 3)
|
||||
|
||||
* Wed Dec 30 1998 Cristian Gafton <gafton@redhat.com>
|
||||
- build for glibc 2.1
|
||||
|
||||
* Tue Jul 7 1998 Jeff Johnson <jbj@redhat.com>
|
||||
- update to 3.2.1.
|
||||
|
||||
* Sat Jun 27 1998 Jeff Johnson <jbj@redhat.com>
|
||||
- add %%clean.
|
||||
|
||||
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
|
||||
- translations modified for de, fr, tr
|
||||
|
||||
* Thu Nov 13 1997 Otto Hammersmith <otto@redhat.com>
|
||||
- fixed problem with Imakefile for fig2dev not including $(XLIB)
|
||||
- build rooted.
|
||||
|
||||
* Fri Oct 24 1997 Otto Hammersmith <otto@redhat.com>
|
||||
- recreated the glibc patch that is needed for an alpha build, missed it
|
||||
building on the intel.
|
||||
|
||||
* Tue Oct 21 1997 Otto Hammersmith <otto@redhat.com>
|
||||
- updated version
|
||||
- fixed source url
|
||||
|
||||
* Fri Jul 18 1997 Erik Troan <ewt@redhat.com>
|
||||
- built against glibc
|
Loading…
Reference in New Issue