forked from pool/transfig
This commit is contained in:
parent
702a5826d9
commit
8ed082a7a4
@ -17,7 +17,7 @@
|
|||||||
SUBDIRS = fig2dev transfig
|
SUBDIRS = fig2dev transfig
|
||||||
MakeSubdirs($(SUBDIRS))
|
MakeSubdirs($(SUBDIRS))
|
||||||
--- doc/manual/Makefile
|
--- doc/manual/Makefile
|
||||||
+++ doc/manual/Makefile 2007-07-24 17:30:26.607457923 +0200
|
+++ doc/manual/Makefile 2007-07-24 17:30:26.607457000 +0200
|
||||||
@@ -2,7 +2,7 @@
|
@@ -2,7 +2,7 @@
|
||||||
# TransFig makefile
|
# TransFig makefile
|
||||||
#
|
#
|
||||||
@ -45,7 +45,7 @@
|
|||||||
+ pdflatex manual.tex
|
+ pdflatex manual.tex
|
||||||
+ pdflatex manual.tex
|
+ pdflatex manual.tex
|
||||||
--- fig2dev/Imakefile
|
--- fig2dev/Imakefile
|
||||||
+++ fig2dev/Imakefile 2007-07-24 17:04:29.213266602 +0200
|
+++ fig2dev/Imakefile 2007-07-24 17:04:29.213266000 +0200
|
||||||
@@ -34,7 +34,7 @@ XCOMM ******
|
@@ -34,7 +34,7 @@ XCOMM ******
|
||||||
XCOMM You should point XFIGLIBDIR to the same directory you did when you compiled
|
XCOMM You should point XFIGLIBDIR to the same directory you did when you compiled
|
||||||
XCOMM and installed xfig.
|
XCOMM and installed xfig.
|
||||||
@ -114,7 +114,7 @@
|
|||||||
|
|
||||||
install.all::
|
install.all::
|
||||||
--- fig2dev/fig2dev.c
|
--- fig2dev/fig2dev.c
|
||||||
+++ fig2dev/fig2dev.c 2007-07-24 17:08:44.764538926 +0200
|
+++ fig2dev/fig2dev.c 2007-07-24 17:08:44.764538000 +0200
|
||||||
@@ -24,6 +24,7 @@
|
@@ -24,6 +24,7 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#endif
|
#endif
|
||||||
@ -147,7 +147,7 @@
|
|||||||
setmode(1,O_BINARY); /* stdout is binary */
|
setmode(1,O_BINARY); /* stdout is binary */
|
||||||
#endif
|
#endif
|
||||||
--- fig2dev/fig2dev.h
|
--- fig2dev/fig2dev.h
|
||||||
+++ fig2dev/fig2dev.h 2007-07-24 17:09:55.464084114 +0200
|
+++ fig2dev/fig2dev.h 2007-07-24 17:09:55.464084000 +0200
|
||||||
@@ -22,6 +22,7 @@
|
@@ -22,6 +22,7 @@
|
||||||
#include <sys/file.h>
|
#include <sys/file.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
@ -208,7 +208,7 @@
|
|||||||
+}
|
+}
|
||||||
+#endif
|
+#endif
|
||||||
--- fig2dev/dev/genps.c
|
--- fig2dev/dev/genps.c
|
||||||
+++ fig2dev/dev/genps.c 2007-07-24 17:15:35.828409372 +0200
|
+++ fig2dev/dev/genps.c 2007-07-24 17:15:35.828409000 +0200
|
||||||
@@ -37,6 +37,8 @@
|
@@ -37,6 +37,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -289,7 +289,7 @@
|
|||||||
static char pstex_file[1000] = "";
|
static char pstex_file[1000] = "";
|
||||||
|
|
||||||
--- fig2dev/dev/gensvg.c
|
--- fig2dev/dev/gensvg.c
|
||||||
+++ fig2dev/dev/gensvg.c 2007-07-24 17:21:49.508282277 +0200
|
+++ fig2dev/dev/gensvg.c 2007-11-05 15:09:49.134626005 +0100
|
||||||
@@ -802,9 +802,11 @@ gensvg_text (t)
|
@@ -802,9 +802,11 @@ gensvg_text (t)
|
||||||
x, y, degrees (t->angle));
|
x, y, degrees (t->angle));
|
||||||
x = y = 0;
|
x = y = 0;
|
||||||
@ -298,7 +298,7 @@
|
|||||||
- "font-style=\"%s\" font-weight=\"%s\" font-size=\"%d\" text-anchor=\"%s\">",
|
- "font-style=\"%s\" font-weight=\"%s\" font-size=\"%d\" text-anchor=\"%s\">",
|
||||||
- x, y, rgbColorVal (t->color), rgbColorVal (t->color), family[t->font / 4],
|
- x, y, rgbColorVal (t->color), rgbColorVal (t->color), family[t->font / 4],
|
||||||
+ fprintf (tfp,
|
+ fprintf (tfp,
|
||||||
+ "<text xml:space=\"preserve\" x=\"%d\" y=\"%d\" stroke=\"#%6.6x\" fill=\"#%6.6x\" font-family=\"%s\"",
|
+ "<text xml:space=\"preserve\" x=\"%d\" y=\"%d\" stroke=\"#%6.6x\" fill=\"#%6.6x\" font-family=\"%s\" ",
|
||||||
+ x, y, rgbColorVal (t->color), rgbColorVal (t->color), family[t->font / 4]);
|
+ x, y, rgbColorVal (t->color), rgbColorVal (t->color), family[t->font / 4]);
|
||||||
+ fprintf (tfp,
|
+ fprintf (tfp,
|
||||||
+ "font-style=\"%s\" font-weight=\"%s\" font-size=\"%d\" text-anchor=\"%s\">",
|
+ "font-style=\"%s\" font-weight=\"%s\" font-size=\"%d\" text-anchor=\"%s\">",
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 5 15:11:04 CET 2007 - werner@suse.de
|
||||||
|
|
||||||
|
- Fix typo which caused a missed white space (bug #339086)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jul 24 17:49:48 CEST 2007 - werner@suse.de
|
Tue Jul 24 17:49:48 CEST 2007 - werner@suse.de
|
||||||
|
|
||||||
|
@ -16,16 +16,15 @@ License: X11/MIT
|
|||||||
Group: Productivity/Graphics/Convertors
|
Group: Productivity/Graphics/Convertors
|
||||||
Provides: transfig.3.2.3d
|
Provides: transfig.3.2.3d
|
||||||
Requires: netpbm ghostscript-library ghostscript-fonts-std
|
Requires: netpbm ghostscript-library ghostscript-fonts-std
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Version: 3.2.5
|
Version: 3.2.5
|
||||||
Release: 1
|
Release: 43
|
||||||
Summary: Graphic Converter
|
Summary: Graphic Converter
|
||||||
Source: transfig.%{version}.tar.bz2
|
Source: transfig.%{version}.tar.bz2
|
||||||
Patch0: transfig.%{version}.dif
|
Patch0: transfig.%{version}.dif
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{expand: %%global _exec_prefix %(type -p pkg-config &>/dev/null && pkg-config --variable prefix x11 || echo /usr/X11R6)}
|
%{expand: %%global _exec_prefix %(type -p pkg-config &>/dev/null && pkg-config --variable prefix x11 || echo /usr/X11R6)}
|
||||||
%if "%_exec_prefix" == "/usr/X11R6"
|
%if "%_exec_prefix" == "/usr/X11R6"
|
||||||
|
|
||||||
%global _mandir %{_exec_prefix}/man
|
%global _mandir %{_exec_prefix}/man
|
||||||
%define _x11data %{_exec_prefix}/lib/X11
|
%define _x11data %{_exec_prefix}/lib/X11
|
||||||
%define _data $(LIBDIR)
|
%define _data $(LIBDIR)
|
||||||
@ -96,8 +95,9 @@ rm -vf %{buildroot}%{_docdir}/transfig/manual/*.div
|
|||||||
%doc %{_mandir}/man1/pic2tpic.1x.gz
|
%doc %{_mandir}/man1/pic2tpic.1x.gz
|
||||||
%doc %{_mandir}/man1/transfig.1x.gz
|
%doc %{_mandir}/man1/transfig.1x.gz
|
||||||
%doc %{_docdir}/transfig/
|
%doc %{_docdir}/transfig/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 05 2007 - werner@suse.de
|
||||||
|
- Fix typo which caused a missed white space (bug #339086)
|
||||||
* Tue Jul 24 2007 - werner@suse.de
|
* Tue Jul 24 2007 - werner@suse.de
|
||||||
- Update to transfig version 3.2.5 (bug ##267840)
|
- Update to transfig version 3.2.5 (bug ##267840)
|
||||||
* SVG driver adds color and pattern filling to arcs
|
* SVG driver adds color and pattern filling to arcs
|
||||||
|
Loading…
Reference in New Issue
Block a user