2007-01-16 00:15:11 +01:00
|
|
|
|
--- .pkgextract
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ .pkgextract 2004-04-27 18:48:07.000000000 +0200
|
2007-01-16 00:15:11 +01:00
|
|
|
|
@@ -0,0 +1 @@
|
|
|
|
|
+bzcat ../gnuplot-fr.doc.bz2 > docs/gnuplot-fr.doc
|
|
|
|
|
--- configure.in
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ configure.in 2004-04-27 18:48:07.000000000 +0200
|
|
|
|
|
@@ -227,7 +227,7 @@ if test "$with_linux_vga" = yes; then
|
2007-01-16 00:15:11 +01:00
|
|
|
|
[AC_DEFINE(LINUXVGA,1,
|
|
|
|
|
[ Define if this is a Linux system with SuperVGA library. ])
|
|
|
|
|
LINUXSUID='chown root $(bindir)/gnuplot; chmod u+s $(bindir)/gnuplot'
|
|
|
|
|
- TERMLIBS="-lvga $TERMLIBS"],
|
|
|
|
|
+ TERMLIBS="/usr/${ARCHLIB:=lib}/libvga.a $TERMLIBS"],
|
|
|
|
|
with_linux_vga=no)
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
--- demo/poldat.dem
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ demo/poldat.dem 2004-04-27 18:48:07.000000000 +0200
|
|
|
|
|
@@ -11,7 +11,7 @@ unset grid
|
2007-01-16 00:15:11 +01:00
|
|
|
|
unset polar
|
|
|
|
|
set title "Primitive Smith Chart"
|
|
|
|
|
unset key
|
|
|
|
|
-set xlabel "Impedance or Admittance Coordinates"
|
|
|
|
|
+set xlabel "Impedance or Admittance Coordinates" 12,-1
|
|
|
|
|
set para
|
|
|
|
|
set rrange [-0 : 10]
|
|
|
|
|
set trange [-pi : pi]
|
|
|
|
|
--- demo/simple.dem
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ demo/simple.dem 2004-04-27 18:48:07.000000000 +0200
|
2007-01-16 00:15:11 +01:00
|
|
|
|
@@ -7,12 +7,11 @@
|
|
|
|
|
# gnuplot> load 'simple.dem'
|
|
|
|
|
#
|
|
|
|
|
set key left box
|
|
|
|
|
-set samples 50
|
|
|
|
|
+set samples 400
|
|
|
|
|
plot [-10:10] sin(x),atan(x),cos(atan(x))
|
|
|
|
|
pause -1 "Hit return to continue"
|
|
|
|
|
|
|
|
|
|
set key right nobox
|
|
|
|
|
-set samples 100
|
|
|
|
|
plot [-pi/2:pi] cos(x),-(sin(x) > sin(x+1) ? sin(x) : sin(x+1))
|
|
|
|
|
pause -1 "Hit return to continue"
|
|
|
|
|
|
|
|
|
|
--- demo/vector.dem
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ demo/vector.dem 2007-04-05 17:36:08.325186217 +0200
|
|
|
|
|
@@ -62,19 +62,19 @@ splot vtot(x,y) w l
|
|
|
|
|
print "Now create a file with equipotential lines"
|
|
|
|
|
pause -1 "Hit return to continue"
|
|
|
|
|
|
|
|
|
|
-set table "equipo2.tmp"
|
|
|
|
|
+set table "/tmp/equipo2.tmp"
|
|
|
|
|
replot
|
|
|
|
|
unset table
|
|
|
|
|
reset
|
|
|
|
|
pause 0
|
|
|
|
|
|
|
|
|
|
-plot "equipo2.tmp" w l
|
|
|
|
|
+plot "/tmp/equipo2.tmp" w l
|
|
|
|
|
print "Now create a x/y datafile for plotting with vectors "
|
|
|
|
|
print "and display vectors parallel to the electrostatic field"
|
2007-01-16 00:15:11 +01:00
|
|
|
|
pause -1 "Hit return to continue"
|
|
|
|
|
set isosam 31,31
|
2007-04-12 17:32:27 +02:00
|
|
|
|
|
|
|
|
|
-set table "field2xy.tmp"
|
|
|
|
|
+set table "/tmp/field2xy.tmp"
|
2007-01-16 00:15:11 +01:00
|
|
|
|
splot vtot(x,y) w l
|
2007-04-12 17:32:27 +02:00
|
|
|
|
unset table
|
|
|
|
|
pause 0
|
|
|
|
|
@@ -84,8 +84,8 @@ set xr [xmin:xmax]
|
|
|
|
|
set yr [ymin:ymax]
|
|
|
|
|
set isosam 31,31
|
|
|
|
|
set key under Left reverse
|
|
|
|
|
-plot "field2xy.tmp" u 1:2:(coef*dx1($1,$2)):(coef*dy1($1,$2)) w vec, \
|
|
|
|
|
- "equipo2.tmp" w l
|
|
|
|
|
+plot "/tmp/field2xy.tmp" u 1:2:(coef*dx1($1,$2)):(coef*dy1($1,$2)) w vec, \
|
|
|
|
|
+ "/tmp/equipo2.tmp" w l
|
|
|
|
|
pause -1 "Hit return to continue"
|
|
|
|
|
|
|
|
|
|
reset
|
2007-01-16 00:15:11 +01:00
|
|
|
|
--- docs/Makefile.in
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ docs/Makefile.in 2007-04-05 17:36:47.850365425 +0200
|
|
|
|
|
@@ -37,7 +37,7 @@
|
2007-01-16 00:15:11 +01:00
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# default is what is needed for interactive gnuplot
|
2007-04-12 17:32:27 +02:00
|
|
|
|
-all: gnuplot.gih
|
2007-01-16 00:15:11 +01:00
|
|
|
|
+all: gnuplot.gih gnuplot-fr.gih gnuplot.info
|
|
|
|
|
|
|
|
|
|
# this tells GNU make not to export variables into the environment
|
|
|
|
|
# But other makes dont understand its significance, so it must
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -321,12 +321,16 @@ doc2hlp: doc2hlp.o termdoc.o
|
2007-01-16 00:15:11 +01:00
|
|
|
|
$(LINK) doc2hlp.o termdoc.o $(LIBS)
|
|
|
|
|
|
|
|
|
|
### gnuplot interactive help format
|
|
|
|
|
-gih: gnuplot.gih
|
|
|
|
|
+gih: gnuplot.gih gnuplot-fr.gih
|
|
|
|
|
|
|
|
|
|
gnuplot.gih: doc2gih $(srcdir)/gnuplot.doc
|
|
|
|
|
@rm -f alldoc2gih
|
|
|
|
|
./doc2gih $(srcdir)/gnuplot.doc gnuplot.gih
|
|
|
|
|
|
|
|
|
|
+gnuplot-fr.gih: doc2gih $(srcdir)/gnuplot-fr.doc
|
|
|
|
|
+ @rm -f alldoc2gih
|
|
|
|
|
+ ./doc2gih $(srcdir)/gnuplot-fr.doc gnuplot-fr.gih
|
|
|
|
|
+
|
|
|
|
|
doc2gih: doc2gih.o termdoc.o
|
|
|
|
|
$(LINK) doc2gih.o termdoc.o $(LIBS)
|
|
|
|
|
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -415,6 +419,7 @@ install: install-gih install-info
|
2007-01-16 00:15:11 +01:00
|
|
|
|
install-gih: gnuplot.gih
|
|
|
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(GIHDIR)
|
|
|
|
|
$(INSTALL_DATA) gnuplot.gih $(DESTDIR)$(GIHDIR)/gnuplot.gih
|
|
|
|
|
+ $(INSTALL_DATA) gnuplot-fr.gih $(DESTDIR)$(GIHDIR)/gnuplot-fr.gih
|
|
|
|
|
|
|
|
|
|
install-info: gnuplot.info
|
|
|
|
|
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir)
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -434,6 +439,7 @@ uninstall: uninstall-gih uninstall-info
|
2007-01-16 00:15:11 +01:00
|
|
|
|
|
|
|
|
|
uninstall-gih:
|
|
|
|
|
rm -f $(DESTDIR)$(GIHDIR)/gnuplot.gih
|
|
|
|
|
+ rm -f $(DESTDIR)$(GIHDIR)/gnuplot-fr.gih
|
|
|
|
|
|
|
|
|
|
uninstall-info:
|
|
|
|
|
$(PRE_UNINSTALL)
|
|
|
|
|
--- docs/gnuplot-fr.doc
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ docs/gnuplot-fr.doc 2004-04-27 18:48:41.000000000 +0200
|
|
|
|
|
@@ -436,8 +436,8 @@ C
|
2007-01-16 00:15:11 +01:00
|
|
|
|
#Home & same as \verb~^A~. \\
|
|
|
|
|
#Ctrl Home & same as \verb~^E~. \\
|
|
|
|
|
#Esc & same as \verb~^U~. \\
|
|
|
|
|
-#Help & `{\bf help}' plus Entr<74>e. \\
|
|
|
|
|
-#Ctrl Help & `{\bf help }'. \\
|
|
|
|
|
+#Help & `{\bf help}` plus Entr<74>e. \\
|
|
|
|
|
+#Ctrl Help & `{\bf help }`. \\
|
|
|
|
|
%c l .
|
|
|
|
|
%Touche fl<66>ch<63>e@Fonction
|
|
|
|
|
%_
|
|
|
|
|
--- src/command.c
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ src/command.c 2004-04-27 18:48:07.000000000 +0200
|
|
|
|
|
@@ -1137,14 +1137,24 @@ pause_command()
|
2007-01-16 00:15:11 +01:00
|
|
|
|
(void) fgets(buf, strlen(buf), stdin);
|
|
|
|
|
}
|
|
|
|
|
} else if (strcmp(term->name, "atari") == 0) {
|
|
|
|
|
- char *line = readline("");
|
|
|
|
|
+ char *line;
|
|
|
|
|
+#if 0
|
|
|
|
|
+ if (term->waitforinput)
|
|
|
|
|
+ term->waitforinput();
|
|
|
|
|
+#endif
|
|
|
|
|
+ line = readline("");
|
|
|
|
|
if (line)
|
|
|
|
|
free(line);
|
|
|
|
|
} else
|
|
|
|
|
(void) fgets(buf, strlen(buf), stdin);
|
|
|
|
|
#elif defined(ATARI)
|
|
|
|
|
if (strcmp(term->name, "atari") == 0) {
|
|
|
|
|
- char *line = readline("");
|
|
|
|
|
+ char *line;
|
|
|
|
|
+#if 0
|
|
|
|
|
+ if (term->waitforinput)
|
|
|
|
|
+ term->waitforinput();
|
|
|
|
|
+#endif
|
|
|
|
|
+ line = readline("");
|
|
|
|
|
if (line)
|
|
|
|
|
free(line);
|
|
|
|
|
} else
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -2640,6 +2650,13 @@ read_line(const char *prompt)
|
2007-01-16 00:15:11 +01:00
|
|
|
|
# endif /* no READLINE */
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
+# if 0
|
|
|
|
|
+# ifdef USE_MOUSE
|
|
|
|
|
+ /* wait for input from graphic device, mainly x11 */
|
|
|
|
|
+ if (term->waitforinput)
|
|
|
|
|
+ term->waitforinput();
|
|
|
|
|
+# endif
|
|
|
|
|
+# endif
|
|
|
|
|
/* grab some input */
|
|
|
|
|
# if defined(READLINE) || defined(HAVE_LIBREADLINE)
|
|
|
|
|
if (((interactive)
|
|
|
|
|
--- src/gplt_x11.c
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ src/gplt_x11.c 2004-04-27 18:48:07.000000000 +0200
|
|
|
|
|
@@ -2273,8 +2273,11 @@ exec_cmd(plot_struct *plot, char *comman
|
2007-01-16 00:15:11 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* X11_justify_text(mode) - set text justification mode */
|
|
|
|
|
- else if (*buffer == 'J')
|
|
|
|
|
- sscanf(buffer, "J%4d", (int *) &plot->jmode);
|
|
|
|
|
+ else if (*buffer == 'J') {
|
|
|
|
|
+ int jmode;
|
|
|
|
|
+ sscanf(buffer, "J%4d", &jmode);
|
|
|
|
|
+ plot->jmode = jmode;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
else if (*buffer == 'A')
|
2007-04-12 17:32:27 +02:00
|
|
|
|
sscanf(buffer + 1, "%lf", &plot->angle);
|
2007-01-16 00:15:11 +01:00
|
|
|
|
--- src/plot.c
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ src/plot.c 2004-04-27 18:51:49.000000000 +0200
|
|
|
|
|
@@ -228,6 +228,7 @@ static int asked_privi = 0;
|
2007-01-16 00:15:11 +01:00
|
|
|
|
void
|
|
|
|
|
drop_privilege()
|
|
|
|
|
{
|
|
|
|
|
+#ifndef SVGA_IS_SECURE
|
|
|
|
|
if (!asked_privi) {
|
|
|
|
|
euid = geteuid();
|
|
|
|
|
egid = getegid();
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -241,11 +242,13 @@ drop_privilege()
|
2007-01-16 00:15:11 +01:00
|
|
|
|
if (seteuid(ruid) == -1)
|
|
|
|
|
(void) fprintf(stderr, "seteuid(%d): %s\n",
|
|
|
|
|
(int) ruid, strerror(errno));
|
|
|
|
|
+#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
take_privilege()
|
|
|
|
|
{
|
|
|
|
|
+#ifndef SVGA_IS_SECURE
|
|
|
|
|
if (!asked_privi) {
|
|
|
|
|
euid = geteuid();
|
|
|
|
|
egid = getegid();
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -259,6 +262,7 @@ take_privilege()
|
2007-01-16 00:15:11 +01:00
|
|
|
|
if (seteuid(euid) == -1)
|
|
|
|
|
(void) fprintf(stderr, "seteuid(%d): %s\n",
|
|
|
|
|
(int) euid, strerror(errno));
|
|
|
|
|
+#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* LINUXVGA */
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -284,8 +288,8 @@ main(int argc, char **argv)
|
2007-01-16 00:15:11 +01:00
|
|
|
|
int i;
|
2007-04-12 17:32:27 +02:00
|
|
|
|
|
2007-01-16 00:15:11 +01:00
|
|
|
|
#ifdef LINUXVGA
|
|
|
|
|
- LINUX_setup(); /* setup VGA before dropping privilege DBT 4/5/99 */
|
|
|
|
|
drop_privilege();
|
|
|
|
|
+ LINUX_setup();
|
|
|
|
|
#endif
|
|
|
|
|
/* make sure that we really have revoked root access, this might happen if
|
|
|
|
|
gnuplot is compiled without vga support but is installed suid by mistake */
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -348,6 +352,24 @@ main(int argc, char **argv)
|
2007-01-16 00:15:11 +01:00
|
|
|
|
unsigned int status[2] = { 1, 0 };
|
2007-04-12 17:32:27 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2007-01-16 00:15:11 +01:00
|
|
|
|
+#ifdef __linux__
|
|
|
|
|
+ if (!getenv("GNUHELP")) {
|
|
|
|
|
+ char* lang = getenv ("LANG");
|
|
|
|
|
+ if (lang) {
|
|
|
|
|
+ char hfile[64];
|
|
|
|
|
+ struct stat buf;
|
|
|
|
|
+
|
|
|
|
|
+ if (strlen(lang) > 2)
|
|
|
|
|
+ lang[2] = '\0';
|
|
|
|
|
+ strcpy(hfile, "/usr/share/gnuplot/4.0/gnuplot-");
|
|
|
|
|
+ strcat(hfile, lang);
|
|
|
|
|
+ strcat(hfile, ".gih");
|
|
|
|
|
+ if (stat(hfile, &buf) == 0)
|
|
|
|
|
+ setenv("GNUHELP", strdup(hfile), 0);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+#endif
|
|
|
|
|
+
|
2007-01-16 00:15:11 +01:00
|
|
|
|
#ifdef HAVE_LIBREADLINE
|
2007-04-12 17:32:27 +02:00
|
|
|
|
using_history();
|
|
|
|
|
/* T.Walter 1999-06-24: 'rl_readline_name' must be this fix name.
|
2007-01-16 00:15:11 +01:00
|
|
|
|
--- src/term.h
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ src/term.h 2004-04-27 18:48:07.000000000 +0200
|
|
|
|
|
@@ -321,9 +321,9 @@
|
2007-01-16 00:15:11 +01:00
|
|
|
|
#include "emf.trm"
|
|
|
|
|
|
|
|
|
|
/* Roland DXY800A plotter */
|
|
|
|
|
-/* #include "dxy.trm" */
|
|
|
|
|
+#include "dxy.trm"
|
|
|
|
|
/* QMS/EXCL laserprinter (Talaris 1590 and others) */
|
|
|
|
|
-/* #include "excl.trm" */
|
|
|
|
|
+#include "excl.trm"
|
|
|
|
|
|
|
|
|
|
/* fig graphics */
|
|
|
|
|
#include "fig.trm"
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -353,7 +353,7 @@
|
2007-01-16 00:15:11 +01:00
|
|
|
|
#include "imagen.trm"
|
|
|
|
|
|
|
|
|
|
/* Kyocera Prescribe printer */
|
|
|
|
|
-/* #include "kyo.trm" */
|
|
|
|
|
+#include "kyo.trm"
|
|
|
|
|
|
|
|
|
|
/* Frame Maker MIF 3.00 format driver */
|
|
|
|
|
#include "mif.trm"
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -389,7 +389,7 @@
|
2007-01-16 00:15:11 +01:00
|
|
|
|
#include "tkcanvas.trm"
|
|
|
|
|
|
|
|
|
|
/* Vectrix 384 printer, also Tandy colour */
|
|
|
|
|
-/* #include "v384.trm" */
|
|
|
|
|
+#include "v384.trm"
|
|
|
|
|
|
|
|
|
|
/* wire printers */
|
|
|
|
|
/* Epson LX-800, Star NL-10, NX-1000 and lots of others */
|
|
|
|
|
--- src/time.c
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ src/time.c 2004-04-27 18:48:07.000000000 +0200
|
|
|
|
|
@@ -291,11 +291,12 @@ gstrptime(char *s, char *fmt, struct tm
|
2007-01-16 00:15:11 +01:00
|
|
|
|
case 's':
|
|
|
|
|
#if 0 /* HBB 20040213: comment this out, but keep it around for now */
|
|
|
|
|
{
|
|
|
|
|
- /* time_t when; */
|
|
|
|
|
- int when;
|
|
|
|
|
+ time_t when;
|
|
|
|
|
+ int iwhen;
|
|
|
|
|
struct tm *tmwhen;
|
|
|
|
|
- s = read_int(s, 10, &when);
|
|
|
|
|
- tmwhen = gmtime((time_t*)&when);
|
|
|
|
|
+ s = read_int(s, 10, &iwhen);
|
|
|
|
|
+ when = iwhen;
|
|
|
|
|
+ tmwhen = gmtime(&when);
|
|
|
|
|
tmwhen->tm_year += 1900;
|
|
|
|
|
*tm = *tmwhen;
|
|
|
|
|
break;
|
|
|
|
|
--- term/linux.trm
|
2007-04-12 17:32:27 +02:00
|
|
|
|
+++ term/linux.trm 2007-04-05 17:38:15.433841258 +0200
|
|
|
|
|
@@ -80,7 +80,7 @@ TERM_PUBLIC void LINUX_linetype __PROTO(
|
2007-01-16 00:15:11 +01:00
|
|
|
|
TERM_PUBLIC void LINUX_move __PROTO((unsigned int x, unsigned int y));
|
|
|
|
|
TERM_PUBLIC void LINUX_vector __PROTO((unsigned int x, unsigned int y));
|
|
|
|
|
TERM_PUBLIC int LINUX_text_angle __PROTO((int ang));
|
|
|
|
|
-TERM_PUBLIC void LINUX_put_text __PROTO((unsigned int x, unsigned int y, const char *str));
|
|
|
|
|
+TERM_PUBLIC void LINUX_put_text __PROTO((unsigned int x, unsigned int y, char *str));
|
|
|
|
|
TERM_PUBLIC void LINUX_suspend __PROTO((void));
|
|
|
|
|
TERM_PUBLIC void LINUX_resume __PROTO((void));
|
|
|
|
|
|
2007-04-12 17:32:27 +02:00
|
|
|
|
@@ -293,7 +293,7 @@ LINUX_putc(
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-16 00:15:11 +01:00
|
|
|
|
TERM_PUBLIC void
|
2007-04-12 17:32:27 +02:00
|
|
|
|
-LINUX_put_text(unsigned int x, unsigned int y, const char *str)
|
|
|
|
|
+LINUX_put_text(unsigned int x, unsigned int y, char *str)
|
2007-01-16 00:15:11 +01:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
switch (linux_angle) {
|