diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-03-31 22:28:22 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-03-31 22:28:22 +0000 |
commit | 92a9a7afb1eef8d864a47e41bd1210664a98d54b (patch) | |
tree | 44ca79fee2dddb0dc700f1b0a7bc3acbe19447c9 /sci-visualization/gnuplot/files | |
parent | Mask sci-visualization/gnuplot-4.2.5 for testing. (diff) | |
download | historical-92a9a7afb1eef8d864a47e41bd1210664a98d54b.tar.gz historical-92a9a7afb1eef8d864a47e41bd1210664a98d54b.tar.bz2 historical-92a9a7afb1eef8d864a47e41bd1210664a98d54b.zip |
Version bump. Add support for PGF/TikZ terminal with USE=lua, bug 233475. Other minor changes.
Package-Manager: portage-2.2_rc27/cvs/Linux i686
Diffstat (limited to 'sci-visualization/gnuplot/files')
-rw-r--r-- | sci-visualization/gnuplot/files/gnuplot-gentoo-version.patch | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/sci-visualization/gnuplot/files/gnuplot-gentoo-version.patch b/sci-visualization/gnuplot/files/gnuplot-gentoo-version.patch new file mode 100644 index 000000000000..b1a530a7dfe7 --- /dev/null +++ b/sci-visualization/gnuplot/files/gnuplot-gentoo-version.patch @@ -0,0 +1,76 @@ +Add special version identification and Gentoo contact information, +in order to fulfil provisions 2 through 4 of the gnuplot licence. + +--- gnuplot-orig/src/plot.c ++++ gnuplot/src/plot.c +@@ -383,9 +383,11 @@ + " -V, --version\n" + " -h, --help\n" + " -e \"command1; command2; ...\"\n" +- "gnuplot %s patchlevel %s\n" +- "Report bugs to %s\n", +- gnuplot_version, gnuplot_patchlevel, bug_email); ++ "gnuplot %s patchlevel %s (Gentoo revision %s)\n" ++ "Report bugs to <%s>\n" ++ "or to <%s>\n", ++ gnuplot_version, gnuplot_patchlevel, gentoo_revision, ++ gentoo_bugtracker, bug_email); + return 0; + } + } +--- gnuplot-orig/src/show.c ++++ gnuplot/src/show.c +@@ -1052,7 +1052,7 @@ + + fprintf(fp, "%s\n\ + %s\t%s\n\ +-%s\tVersion %s patchlevel %s\n\ ++%s\tVersion %s patchlevel %s (Gentoo revision %s)\n\ + %s\tlast modified %s\n\ + %s\tSystem: %s %s\n\ + %s\n\ +@@ -1063,10 +1063,11 @@ + %s\tThe gnuplot FAQ is available from %s\n\ + %s\n\ + %s\tSend bug reports and suggestions to <%s>\n\ ++%s\tor to <%s>\n\ + %s\n", + p, /* empty line */ + p, PROGRAM, +- p, gnuplot_version, gnuplot_patchlevel, ++ p, gnuplot_version, gnuplot_patchlevel, gentoo_revision, + p, gnuplot_date, + p, os_name, os_rel, + p, /* empty line */ +@@ -1076,6 +1077,7 @@ + p, /* Type `help` */ + p, faq_location, + p, /* empty line */ ++ p, gentoo_bugtracker, + p, bug_email, + p); /* empty line */ + +--- gnuplot-orig/src/version.c ++++ gnuplot/src/version.c +@@ -46,6 +46,9 @@ + + const char faq_location[] = FAQ_LOCATION; + ++const char gentoo_revision[] = GENTOO_REVISION; ++const char gentoo_bugtracker[] = "http://bugs.gentoo.org/"; ++ + char *compile_options = (void *)0; /* Will be loaded at runtime */ + + #define RELEASE_VERSION 1 +--- gnuplot-orig/src/version.h ++++ gnuplot/src/version.h +@@ -47,6 +47,9 @@ + extern const char bug_email[]; + extern const char help_email[]; + ++extern const char gentoo_revision[]; ++extern const char gentoo_bugtracker[]; ++ + extern char os_name[]; + extern char os_rel[]; + |