diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-08-29 10:06:35 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-08-29 10:07:22 +0200 |
commit | 5f26b5938812d41ebfd3712a9c59ba8a49f13d1b (patch) | |
tree | cdcdbdbc72d8141dec678671e621364869888d88 /sci-chemistry/numbat/files | |
parent | app-misc/zygrib: treeclean (diff) | |
download | gentoo-5f26b5938812d41ebfd3712a9c59ba8a49f13d1b.tar.gz gentoo-5f26b5938812d41ebfd3712a9c59ba8a49f13d1b.tar.bz2 gentoo-5f26b5938812d41ebfd3712a9c59ba8a49f13d1b.zip |
sci-chemistry/numbat: treeclean
Closes: https://bugs.gentoo.org/862486
Closes: https://bugs.gentoo.org/583038
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sci-chemistry/numbat/files')
-rw-r--r-- | sci-chemistry/numbat/files/numbat-0.999-gnuplot.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/sci-chemistry/numbat/files/numbat-0.999-gnuplot.patch b/sci-chemistry/numbat/files/numbat-0.999-gnuplot.patch deleted file mode 100644 index 942f5871e50b..000000000000 --- a/sci-chemistry/numbat/files/numbat-0.999-gnuplot.patch +++ /dev/null @@ -1,42 +0,0 @@ - src/error_analysis.c | 20 ++++++++++---------- - 1 file changed, 10 insertions(+), 10 deletions(-) - -diff --git a/src/error_analysis.c b/src/error_analysis.c -index eb86a6f..c0edf5f 100644 ---- a/src/error_analysis.c -+++ b/src/error_analysis.c -@@ -848,11 +848,11 @@ void write_sanson_mac(FILE * F, char * name_plot, char * name_world, int number_ - } - - fprintf(F, "reset\n"); -- fprintf(F, "set noxtics\n"); -- fprintf(F, "set noytics\n"); -+ fprintf(F, "unset xtics\n"); -+ fprintf(F, "unset ytics\n"); - fprintf(F, "set angles degrees\n"); -- fprintf(F, "set nogrid\n"); -- fprintf(F, "set noborder\n"); -+ fprintf(F, "unset grid\n"); -+ fprintf(F, "unset border\n"); - //fprintf(F, "width=40\n"); - //fprintf(F, "height=width*(3./4.)\n"); - //fprintf(F, "set xrange [-width : width]\n"); -@@ -867,12 +867,12 @@ void write_sanson_mac(FILE * F, char * name_plot, char * name_world, int number_ - fprintf(F, "YC(lat,lon)=(lon-long0)*cos(lat)\n"); - fprintf(F, "plot '%s' using (YC($2,$1)):(XC($2,$1)) t '' with lines lw 0.1 lt -1", name_world); - for(i = 0; i < number_of_tensor; i++){ -- fprintf(F, ", '%s' using (YC($%d,$%d)):(XC($%d,$%d)) t '' with points %d", name_plot, -- 6*i+2, 6*i+1, 6*i+2, 6*i+1, 3*i+1); -- fprintf(F, ", '%s' using (YC($%d,$%d)):(XC($%d,$%d)) t '' with points %d", name_plot, -- 6*i+4, 6*i+3, 6*i+4, 6*i+3, 3*i+2); -- fprintf(F, ", '%s' using (YC($%d,$%d)):(XC($%d,$%d)) t '' with points %d", name_plot, -- 6*i+6, 6*i+5, 6*i+6, 6*i+5, 3*i+3); -+ fprintf(F, ", '%s' using (YC($%d,$%d)):(XC($%d,$%d)) t '' with points", name_plot, -+ 6*i+2, 6*i+1, 6*i+2, 6*i+1); -+ fprintf(F, ", '%s' using (YC($%d,$%d)):(XC($%d,$%d)) t '' with points", name_plot, -+ 6*i+4, 6*i+3, 6*i+4, 6*i+3); -+ fprintf(F, ", '%s' using (YC($%d,$%d)):(XC($%d,$%d)) t '' with points", name_plot, -+ 6*i+6, 6*i+5, 6*i+6, 6*i+5); - } - fprintf(F, "\n"); - //fprintf(F, "pause 2\n"); |