summaryrefslogtreecommitdiff
path: root/sci-mathematics/gsl-shell/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-08-30 22:49:20 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-08-30 22:49:20 +0100
commit6cef603bfc4353c863a1a0b460a0aa882d2dc51c (patch)
tree1df444f2d99f097ae87a3481221283e70dec2163 /sci-mathematics/gsl-shell/files
parentb33c907ab2c29be7bd04369bc2e3f5dd0b109697 (diff)
gentoo auto-resync : 30:08:2022 - 22:49:20
Diffstat (limited to 'sci-mathematics/gsl-shell/files')
-rw-r--r--sci-mathematics/gsl-shell/files/gsl-shell-2.2.0-pkg-config.patch28
-rw-r--r--sci-mathematics/gsl-shell/files/gsl-shell-2.3.0-gdt-cflags.patch20
-rw-r--r--sci-mathematics/gsl-shell/files/gsl-shell-font.patch10
-rw-r--r--sci-mathematics/gsl-shell/files/gsl-shell-nogui.patch25
-rw-r--r--sci-mathematics/gsl-shell/files/gsl-shell-strip.patch8
-rw-r--r--sci-mathematics/gsl-shell/files/gsl-shell-usr.patch8
6 files changed, 0 insertions, 99 deletions
diff --git a/sci-mathematics/gsl-shell/files/gsl-shell-2.2.0-pkg-config.patch b/sci-mathematics/gsl-shell/files/gsl-shell-2.2.0-pkg-config.patch
deleted file mode 100644
index dc4b05bc3bec..000000000000
--- a/sci-mathematics/gsl-shell/files/gsl-shell-2.2.0-pkg-config.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/makepackages
-+++ b/makepackages
-@@ -52,17 +52,17 @@ else
- PTHREADS_LIBS = -lpthread
-
- else
-- AGG_INCLUDES = -I/usr/include/agg2
-- AGG_LIBS = -lagg -lX11
-+ AGG_INCLUDES = $(shell $(PKG_CONFIG) --cflags libagg)
-+ AGG_LIBS = $(shell $(PKG_CONFIG) --libs libagg) -lX11
-
-- GSL_INCLUDES =
-- GSL_LIBS = -lgsl -lblas
-+ GSL_INCLUDES = $(shell $(PKG_CONFIG) --cflags gsl)
-+ GSL_LIBS = $(shell $(PKG_CONFIG) --libs gsl)
-
-- FOX_INCLUDES := $(shell pkg-config fox --cflags)
-- FOX_LIBS = $(shell pkg-config fox --libs)
-+ FOX_INCLUDES := $(shell $(PKG_CONFIG) fox --cflags)
-+ FOX_LIBS = $(shell $(PKG_CONFIG) fox --libs)
-
-- FREETYPE_INCLUDES = -I/usr/include/freetype2
-- FREETYPE_LIBS = -lfreetype
-+ FREETYPE_INCLUDES = $(shell $(PKG_CONFIG) --cflags freetype2)
-+ FREETYPE_LIBS = $(shell $(PKG_CONFIG) --libs freetype2)
-
- PTHREADS_LIBS = -lpthread
- endif
diff --git a/sci-mathematics/gsl-shell/files/gsl-shell-2.3.0-gdt-cflags.patch b/sci-mathematics/gsl-shell/files/gsl-shell-2.3.0-gdt-cflags.patch
deleted file mode 100644
index 388fa003f0ff..000000000000
--- a/sci-mathematics/gsl-shell/files/gsl-shell-2.3.0-gdt-cflags.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/gdt/Makefile
-+++ b/gdt/Makefile
-@@ -27,7 +27,7 @@ include $(GSH_BASE_DIR)/makedefs
-
- INCLUDES += -I$(GSH_BASE_DIR)
-
--CFLAGS += -std=c99
-+GDT_CFLAGS = $(CFLAGS) -std=c99
-
- GDT_SRC_FILES = char_buffer.c gdt_index.c gdt_table.c
- GDT_OBJ_FILES := $(GDT_SRC_FILES:%.c=%.o)
-@@ -36,7 +36,7 @@ DEP_FILES := $(GDT_SRC_FILES:%.c=.deps/%.P)
-
- DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
-
--COMPILE = $(CC) $(CFLAGS) $(LUA_CFLAGS) $(DEFS) $(INCLUDES)
-+COMPILE = $(CC) $(GDT_CFLAGS) $(LUA_CFLAGS) $(DEFS) $(INCLUDES)
-
- TARGETS = libgdt.a
-
diff --git a/sci-mathematics/gsl-shell/files/gsl-shell-font.patch b/sci-mathematics/gsl-shell/files/gsl-shell-font.patch
deleted file mode 100644
index d8879497c4cd..000000000000
--- a/sci-mathematics/gsl-shell/files/gsl-shell-font.patch
+++ /dev/null
@@ -1,10 +0,0 @@
-diff -r -U1 gsl-shell.orig/agg-plot/support_x11.cpp gsl-shell/agg-plot/support_x11.cpp
---- gsl-shell.orig/agg-plot/support_x11.cpp 2012-11-27 04:55:38.000000000 +0700
-+++ gsl-shell/agg-plot/support_x11.cpp 2012-11-30 23:02:31.000000000 +0700
-@@ -9,4 +9,4 @@
- #else
--const char *ttf_names[] = {"ubuntu-font-family/Ubuntu-R.ttf", "freefont/FreeSans.ttf", "ttf-dejavu/DejaVuSans.ttf", 0};
--#define TTF_SYSTEM_DIR "/usr/share/fonts/truetype/"
-+const char *ttf_names[] = {"ubuntu-font-family/Ubuntu-R.ttf", "freefont-ttf/FreeSans.ttf", "dejavu/DejaVuSans.ttf", 0};
-+#define TTF_SYSTEM_DIR "/usr/share/fonts/"
- #define CONSOLE_FONT_NAME "monospace"
diff --git a/sci-mathematics/gsl-shell/files/gsl-shell-nogui.patch b/sci-mathematics/gsl-shell/files/gsl-shell-nogui.patch
deleted file mode 100644
index 16d3eb0f04d2..000000000000
--- a/sci-mathematics/gsl-shell/files/gsl-shell-nogui.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -r -U1 gsl-shell.orig/Makefile gsl-shell/Makefile
---- gsl-shell.orig/Makefile 2012-09-21 19:54:05.000000000 +0700
-+++ gsl-shell/Makefile 2012-09-21 19:53:37.000000000 +0700
-@@ -29,3 +29,2 @@
- GSL_SHELL = gsl-shell$(EXE_EXT)
--GSL_SHELL_GUI = gsl-shell-gui$(EXE_EXT)
- LUA_CFLAGS = -I$(LUADIR)/src
-@@ -73,4 +72,3 @@
- INCLUDES += $(PTHREADS_CFLAGS) -Iagg-plot
--GUI_SUBDIR = fox-gui
--SUBDIRS += agg-plot $(GUI_SUBDIR)
-+SUBDIRS += agg-plot
- LUAGSL_LIBS += agg-plot/libaggplot.a
-@@ -105,6 +103,5 @@
-
--install: $(GSL_SHELL) $(GUI_SUBDIR)
-+install: $(GSL_SHELL)
- mkdir -p $(INSTALL_BIN_DIR)
- cp $(GSL_SHELL) $(INSTALL_BIN_DIR)
-- cp fox-gui/$(GSL_SHELL_GUI) $(INSTALL_BIN_DIR)
- mkdir -p $(INSTALL_LIB_DIR)
-@@ -122,3 +119,2 @@
- $(MAKE) -C $(LUADIR) clean
-- $(MAKE) -C fox-gui clean
- $(HOST_RM) *.o $(TARGETS)
diff --git a/sci-mathematics/gsl-shell/files/gsl-shell-strip.patch b/sci-mathematics/gsl-shell/files/gsl-shell-strip.patch
deleted file mode 100644
index 1d50a7e831af..000000000000
--- a/sci-mathematics/gsl-shell/files/gsl-shell-strip.patch
+++ /dev/null
@@ -1,8 +0,0 @@
-diff -r -U1 gsl-shell.orig/Makefile gsl-shell/Makefile
---- gsl-shell.orig/Makefile 2012-09-12 01:13:31.000000000 +0700
-+++ gsl-shell/Makefile 2012-09-26 16:13:56.000000000 +0700
-@@ -109,4 +109,2 @@
- cp fox-gui/$(GSL_SHELL_GUI) $(INSTALL_BIN_DIR)
-- strip $(INSTALL_BIN_DIR)/$(GSL_SHELL)
-- strip $(INSTALL_BIN_DIR)/$(GSL_SHELL_GUI)
- mkdir -p $(INSTALL_LIB_DIR)
diff --git a/sci-mathematics/gsl-shell/files/gsl-shell-usr.patch b/sci-mathematics/gsl-shell/files/gsl-shell-usr.patch
deleted file mode 100644
index 20ca6d317c7a..000000000000
--- a/sci-mathematics/gsl-shell/files/gsl-shell-usr.patch
+++ /dev/null
@@ -1,8 +0,0 @@
-diff -r -U1 gsl-shell.orig/makeconfig gsl-shell/makeconfig
---- gsl-shell.orig/makeconfig 2012-09-12 01:13:31.000000000 +0700
-+++ gsl-shell/makeconfig 2012-09-26 16:16:43.000000000 +0700
-@@ -21,3 +21,3 @@
-
--PREFIX= /usr/local
-+PREFIX= /usr
- DESTDIR=