diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /sci-visualization/gnuplot/files | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'sci-visualization/gnuplot/files')
4 files changed, 100 insertions, 0 deletions
diff --git a/sci-visualization/gnuplot/files/gnuplot-5.0.1-fix-underlinking.patch b/sci-visualization/gnuplot/files/gnuplot-5.0.1-fix-underlinking.patch new file mode 100644 index 000000000000..c39bc828f268 --- /dev/null +++ b/sci-visualization/gnuplot/files/gnuplot-5.0.1-fix-underlinking.patch @@ -0,0 +1,17 @@ +Description: Add missing linkage against X11 libs. +Author: Anton Gladky <gladk@debian.org> +Last-Update: 2015-06-16 + +Index: gnuplot-5.0.1/src/Makefile.am +=================================================================== +--- gnuplot-5.0.1.orig/src/Makefile.am ++++ gnuplot-5.0.1/src/Makefile.am +@@ -89,6 +89,8 @@ $(EXTRA_gnuplot_SOURCES) + + if BUILD_WXWIDGETS + gnuplot_SOURCES += wxterminal/wxt_gui.cpp ++XLIBS = @LIBRARIES_FOR_X@ ++gnuplot_LDADD += $(XLIBS) + endif + + if BUILD_GPCAIRO diff --git a/sci-visualization/gnuplot/files/gnuplot-5.0.6-no-picins.patch b/sci-visualization/gnuplot/files/gnuplot-5.0.6-no-picins.patch new file mode 100644 index 000000000000..87408aebd447 --- /dev/null +++ b/sci-visualization/gnuplot/files/gnuplot-5.0.6-no-picins.patch @@ -0,0 +1,27 @@ +Do not require picins.sty. +https://bugs.gentoo.org/577828#c4 + +--- gnuplot-5.0.6-orig/docs/Makefile.am ++++ gnuplot-5.0.6/docs/Makefile.am +@@ -189,7 +189,6 @@ + touch figures.idx ; \ + rm -f pdffigures.tex ; \ + ( echo "\usepackage{graphicx}" > pdffigures.tex ; \ +- echo "\usepackage{picins}" >> pdffigures.tex ; \ + ) ; \ + TEXINPUTS=.:$(srcdir):$(top_srcdir):${TEXINPUTS}: $(PDFLATEX) $< ; \ + TEXINPUTS=.:$(srcdir):$(top_srcdir):${TEXINPUTS}: $(PDFLATEX) $< ; \ +--- gnuplot-5.0.6-orig/docs/doc2tex.c ++++ gnuplot-5.0.6/docs/doc2tex.c +@@ -170,9 +170,9 @@ + case 'F': /* embedded figure */ + if (figures) { + line[strlen(line)-1]=NUL; +- (void) fputs("\\parpic[r][rt]{\\includegraphics[width=3in,keepaspectratio]{",b); ++ (void) fputs("\\begin{figure}[htb]\n\\centering\\includegraphics[width=3in,keepaspectratio]{",b); + fputs(line+1, b); +- (void) fputs("}}\n",b); ++ (void) fputs("}\n\\end{figure}\n",b); + } + break; + diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch new file mode 100644 index 000000000000..613a028ee79b --- /dev/null +++ b/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch @@ -0,0 +1,43 @@ +Add configure option for ReGIS support. +https://bugs.gentoo.org/643888 + +--- gnuplot-5.2.2-orig/configure.ac ++++ gnuplot-5.2.2/configure.ac +@@ -1057,6 +1057,13 @@ + AC_DEFINE(HAVE_MIF,1, + [ Define to include support for mif terminal ],)) + ++dnl ReGIS terminal ++AC_ARG_WITH(regis,dnl ++[ --with-regis ReGIS terminal]) ++AS_IF([test "x${with_regis}" = "xyes"], ++ AC_DEFINE(HAVE_REGIS,1, ++ [ Define to include support for ReGIS terminal ],)) ++ + AC_ARG_WITH(cairo,dnl + [ --without-cairo cairo-based terminals (default enabled)],, + [test -z "${with_cairo}" && with_cairo=yes]) +@@ -1350,6 +1357,12 @@ + AC_MSG_RESULT([ mif terminal: no (use --with-mif to enable)]) + fi + ++if test "$with_regis" = yes; then ++ AC_MSG_RESULT([ ReGIS terminal: yes]) ++else ++ AC_MSG_RESULT([ ReGIS terminal: no (use --with-regis to enable)]) ++fi ++ + if test "$is_msdos" = yes; then + AC_MSG_RESULT([ svga terminal (MSDOS/djgpp): yes]) + fi +--- gnuplot-5.2.2-orig/src/term.h ++++ gnuplot-5.2.2/src/term.h +@@ -182,7 +182,7 @@ + #endif + + /* REGIS graphics language */ +-#ifdef VMS ++#if defined(VMS) || defined(HAVE_REGIS) + # include "regis.trm" + #endif + diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.6-caca.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.6-caca.patch new file mode 100644 index 000000000000..4441e4b8c036 --- /dev/null +++ b/sci-visualization/gnuplot/files/gnuplot-5.2.6-caca.patch @@ -0,0 +1,13 @@ +https://bugs.gentoo.org/690014 +https://sourceforge.net/p/gnuplot/mailman/message/34342174/ + +--- gnuplot-5.2.6-orig/configure.ac ++++ gnuplot-5.2.6/configure.ac +@@ -1224,6 +1224,7 @@ + if test "${enable_qt_ok}" = yes \ + || test "${enable_wxwidgets_ok}" = yes \ + || test "$GGI_SUPPORT" = yes \ ++ || test "$with_caca" = yes \ + || test "$no_x" != yes; then + enable_mouse=yes; + fi |
