summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-03-05 02:12:28 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2021-03-05 09:15:55 +0100
commitd4534642d6738a3d2e4e1eb0b55e3a2d7be3efdf (patch)
tree8c3a497453ef690816889dbbb9624c03f0de395d /net-analyzer/slurm/files
parentnet-libs/libnetfilter_cttimeout: Drop Drop 1.0.0 (r0), EAPI5-- (diff)
downloadgentoo-d4534642d6738a3d2e4e1eb0b55e3a2d7be3efdf.tar.gz
gentoo-d4534642d6738a3d2e4e1eb0b55e3a2d7be3efdf.tar.bz2
gentoo-d4534642d6738a3d2e4e1eb0b55e3a2d7be3efdf.zip
net-analyzer/slurm: Drop 0.3.3-r2, EAPI5--
Closes: https://bugs.gentoo.org/757054 Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-analyzer/slurm/files')
-rw-r--r--net-analyzer/slurm/files/slurm-0.3.3-gentoo.patch48
-rw-r--r--net-analyzer/slurm/files/slurm-0.3.3-theme.patch16
2 files changed, 0 insertions, 64 deletions
diff --git a/net-analyzer/slurm/files/slurm-0.3.3-gentoo.patch b/net-analyzer/slurm/files/slurm-0.3.3-gentoo.patch
deleted file mode 100644
index bd97a10c1e81..000000000000
--- a/net-analyzer/slurm/files/slurm-0.3.3-gentoo.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -40,31 +40,6 @@
- fi
- AC_DEFINE(OSTYPE, ["${OSTYPE}"], [The operating system to build for])
-
--for cursespath in /usr/include/ncurses.h /usr/local/include/ncurses.h /usr/local/include/ncurses/ncurses.h /opt/include/ncurses.h /opt/include/curses.h /usr/include/curses.h /usr/local/include/curses.h /dev/null
--do
-- test -f "${cursespath}" && break
--done
--case ${cursespath} in
-- /usr/include/*)
-- CFLAGS="$CFLAGS -I/usr/include"
-- LDFLAGS=""
-- ;;
-- /usr/local/include/ncurses/*)
-- CFLAGS="${CFLAGS} -I/usr/local/include/ncurses"
-- LDFLAGS="-L/usr/local/lib"
-- SOLLDFLAGS="-R/usr/local/lib"
-- ;;
-- /usr/local/include/*)
-- CFLAGS="${CFLAGS} -I/usr/local/include"
-- LDFLAGS="-L/usr/local/lib"
-- SOLLDFLAGS="-R/usr/local/lib"
-- ;;
-- /opt/include/*)
-- CFLAGS="${CFLAGS} -I/opt/include"
-- LDFLAGS="-L/opt/lib"
-- SOLLDFLAGS="-R/opt/lib"
-- ;;
--esac
- # add Slowlaris -R and libraries to LDFLAGS
- if test ${OSTYPE} = "solaris" ; then
- LDFLAGS="${LDFLAGS} ${SOLLDFLAGS} -lnsl -lsocket -lkstat"
-@@ -74,7 +49,12 @@
- ncurses_support="no"
- curses_support="no"
- color_support="no"
--AC_CHECK_LIB(ncurses, use_default_colors, LDFLAGS="$LDFLAGS -lncurses"; CFLAGS="$CFLAGS -D_HAVE_NCURSES -D_HAVE_NCURSES_COLOR"; color_support="yes"; ncurses_support="yes", AC_CHECK_LIB(ncurses, use_default_colors, LDFLAGS="$LDFLAGS -lncurses"; CFLAGS="$CFLAGS -D_HAVE_NCURSES"; ncurses_support="yes"; echo "NO TRANSPARENCY SUPPORT in this ncurses lib", AC_CHECK_LIB(curses, initscr, LDFLAGS="$LDFLAGS -lcurses"; CFLAGS="$CFLAGS -D_HAVE_CURSES"; curses_support="yes"; echo "NO TRANSPARENCY SUPPORT in curses lib")))
-+PKG_CHECK_MODULES(ncurses,ncurses,
-+ LIBS="$LIBS $ncurses_LIBS"
-+ AC_DEFINE(HAVE_NCURSES, 1, [Define if we have ncurses])
-+ AC_DEFINE(HAVE_NCURSES_COLOR, 1, [We want color])
-+ color_support="yes"; ncurses_support="yes"
-+ ,AC_MSG_ERROR([ncurses not found]))
-
- # disable color support on Solaris for now
- if test ${OSTYPE} = "solaris" ; then
diff --git a/net-analyzer/slurm/files/slurm-0.3.3-theme.patch b/net-analyzer/slurm/files/slurm-0.3.3-theme.patch
deleted file mode 100644
index 131554ee57f7..000000000000
--- a/net-analyzer/slurm/files/slurm-0.3.3-theme.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/theme.c
-+++ b/theme.c
-@@ -70,13 +70,7 @@
- if ((f = fopen(filename, "r")) == NULL)
- {
- bzero(&filename, BUFSIZ);
--#ifdef __NetBSD__
-- snprintf(filename, BUFSIZ, "/usr/pkg/share/slurm/%s.theme", name);
--#elif __Debian__
- snprintf(filename, BUFSIZ, "/usr/share/slurm/%s.theme", name);
--#else
-- snprintf(filename, BUFSIZ, "/usr/local/share/slurm/%s.theme", name);
--#endif
- if ((f = fopen(filename, "r")) == NULL)
- error(ERR_FATAL, "cannot find theme '%s'", name);
- }