summaryrefslogtreecommitdiff
path: root/sci-electronics/ngspice/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-01-22 20:28:19 +0000
commitabaa75b10f899ada8dd05b23cc03205064394bc6 (patch)
treeeca3dd248b73b92013cba00a0fcc1edf2696e19a /sci-electronics/ngspice/files
parent24fd814c326e282c4321965c31f341dad77e270d (diff)
gentoo resync : 22.01.2021
Diffstat (limited to 'sci-electronics/ngspice/files')
-rw-r--r--sci-electronics/ngspice/files/ngspice-27-autoconf_fftw3.patch26
-rw-r--r--sci-electronics/ngspice/files/ngspice-27-blt_linkage_workaround.patch12
-rw-r--r--sci-electronics/ngspice/files/ngspice-27-fix_parsing_tcl_commands.patch16
-rw-r--r--sci-electronics/ngspice/files/ngspice-27-split_terminfo.patch20
4 files changed, 0 insertions, 74 deletions
diff --git a/sci-electronics/ngspice/files/ngspice-27-autoconf_fftw3.patch b/sci-electronics/ngspice/files/ngspice-27-autoconf_fftw3.patch
deleted file mode 100644
index d0eec127c572..000000000000
--- a/sci-electronics/ngspice/files/ngspice-27-autoconf_fftw3.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -191,6 +191,10 @@
- AC_ARG_WITH([ngshared],
- [AS_HELP_STRING([--with-ngshared], [Compiles ngspice as shared library (dll)])])
-
-+# --with-fftw3: Use fftw3 for Fourier transforms. Default is "yes".
-+AC_ARG_WITH([fftw3],
-+ [AS_HELP_STRING([--with-fftw3[=yes/no]], [Use fftw3 for Fourier transforms. Default=yes.])])
-+
- # readline and editline cannot both be enabled
- if test "x$with_editline" = xyes; then
- if test "x$with_readline" = xyes; then
-@@ -726,10 +730,12 @@
- # Look for math library:
- AC_CHECK_LIB([m], [sqrt])
- AC_CHECK_HEADERS([float.h limits.h values.h ieeefp.h])
-+if test "x$with_fftw3" != xno; then
- AC_CHECK_HEADERS([fftw3.h])
- AC_CHECK_LIB([fftw3], [fftw_plan_dft_1d],
- [AC_DEFINE([HAVE_LIBFFTW3], [], [Have fft routines in libfftw3])
- LIBS="$LIBS -lfftw3"])
-+fi
-
- # Check for a few mathematical functions:
- AC_CHECK_FUNCS([erfc logb scalb scalbn asinh acosh atanh finite])
diff --git a/sci-electronics/ngspice/files/ngspice-27-blt_linkage_workaround.patch b/sci-electronics/ngspice/files/ngspice-27-blt_linkage_workaround.patch
deleted file mode 100644
index 53415c748d6d..000000000000
--- a/sci-electronics/ngspice/files/ngspice-27-blt_linkage_workaround.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -461,6 +461,9 @@
- AC_MSG_ERROR([Couldn't find BLT])
- fi
- rm -f conftest.tcl
-+
-+ AC_SEARCH_LIBS([Blt_GetVector], [BLT BLT24 BLT25],,
-+ [AC_MSG_ERROR([Couldnt find BLT library.])])
-
- AC_CHECK_LIB([pthread], [pthread_create])
-
diff --git a/sci-electronics/ngspice/files/ngspice-27-fix_parsing_tcl_commands.patch b/sci-electronics/ngspice/files/ngspice-27-fix_parsing_tcl_commands.patch
deleted file mode 100644
index bad336590dfa..000000000000
--- a/sci-electronics/ngspice/files/ngspice-27-fix_parsing_tcl_commands.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/src/tclspice.c
-+++ b/src/tclspice.c
-@@ -828,10 +828,9 @@
- int i;
- NG_IGNORE(clientData);
- save_interp();
-- /* Looks backwards through the first command and strips the :: part */
-- for (i = strlen(argv[0])-1; i > 0; i--)
-- if (argv[0][i] == *":")
-- argv[0] += i + 1;
-+ char *prefix = strstr(argv[0], "spice::");
-+ if (prefix)
-+ argv[0] = prefix + 7;
- return _run(argc, (char **)argv);
- }
-
diff --git a/sci-electronics/ngspice/files/ngspice-27-split_terminfo.patch b/sci-electronics/ngspice/files/ngspice-27-split_terminfo.patch
deleted file mode 100644
index 09f5ee29a3c9..000000000000
--- a/sci-electronics/ngspice/files/ngspice-27-split_terminfo.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -1016,7 +1016,7 @@
- AC_CHECK_HEADERS([readline/readline.h readline/history.h],
- [AC_DEFINE([HAVE_GNUREADLINE], [], [Define if we have GNU readline])],
- [AC_MSG_ERROR([Couldn't find GNU readline headers.])])
-- AC_SEARCH_LIBS([tputs], [ncurses termcap],
-+ AC_SEARCH_LIBS([tputs], [ncurses termcap tinfo],
- [AC_DEFINE([HAVE_TERMCAP], [], [Define if we have ncurses or termcap])],
- [AC_MSG_ERROR([Found neither ncurses or termcap])])
- AC_CHECK_LIB([readline], [readline],
-@@ -1036,7 +1036,7 @@
- AC_CHECK_HEADERS([editline/readline.h],
- [AC_DEFINE([HAVE_BSDEDITLINE], [1], [Define to enable BSD editline])],
- [AC_MSG_ERROR([Couldn't find BSD editline headers.])])
-- AC_SEARCH_LIBS([tputs], [ncurses termcap],
-+ AC_SEARCH_LIBS([tputs], [ncurses termcap tinfo],
- [AC_DEFINE([HAVE_TERMCAP], [], [Define if we have ncurses or termcap])],
- [AC_MSG_ERROR([Found neither ncurses or termcap])])
- AC_CHECK_LIB([edit], [readline],