summaryrefslogtreecommitdiff
path: root/dev-scheme/slib/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-scheme/slib/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-scheme/slib/files')
-rw-r--r--dev-scheme/slib/files/50slib1
-rw-r--r--dev-scheme/slib/files/slib-3.2.5-fix-makefile-guile.patch23
-rw-r--r--dev-scheme/slib/files/slib-3.2.5-fix-paths.patch42
3 files changed, 0 insertions, 66 deletions
diff --git a/dev-scheme/slib/files/50slib b/dev-scheme/slib/files/50slib
deleted file mode 100644
index 072862ed0b83..000000000000
--- a/dev-scheme/slib/files/50slib
+++ /dev/null
@@ -1 +0,0 @@
-SCHEME_LIBRARY_PATH="/usr/share/slib/"
diff --git a/dev-scheme/slib/files/slib-3.2.5-fix-makefile-guile.patch b/dev-scheme/slib/files/slib-3.2.5-fix-makefile-guile.patch
deleted file mode 100644
index 4617b4e780cb..000000000000
--- a/dev-scheme/slib/files/slib-3.2.5-fix-makefile-guile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- slib-3b5/~Makefile 2016-10-10 23:54:01.461733550 +0200
-+++ slib-3b5/Makefile 2016-10-10 23:59:33.806035867 +0200
-@@ -13,9 +13,9 @@ SHELL = /bin/sh
- INSTALL = install
- INSTALL_PROGRAM = ${INSTALL}
- INSTALL_DATA = ${INSTALL} -m 644
--INSTALL_INFO = ginstall-info
-+INSTALL_INFO = install-info
-
--SCHEME = scm
-+SCHEME = guile
- CHPAT = $(HOME)/bin/chpat
- MAKEDEV = $(MAKE) -f $(HOME)/makefile.dev
- TEXI2HTML = /usr/local/bin/texi2html -split -verbose
-@@ -183,7 +183,7 @@ slib.html: slib.texi
- $(MAKEINFO) --html --no-split --no-warn --force $<
-
- slib-$(VERSION).info: slib.texi version.txi $(txifiles) $(texifiles)
-- $(MAKEINFO) $< --no-warn --no-split -o slib-$(VERSION).info
-+ $(MAKEINFO) $< --no-warn --no-split --force -o slib-$(VERSION).info
- slib.info: slib-$(VERSION).info
- if [ -f $(prevdocsdir)slib.info ];\
- then infobar $(prevdocsdir)slib.info slib-$(VERSION).info \
diff --git a/dev-scheme/slib/files/slib-3.2.5-fix-paths.patch b/dev-scheme/slib/files/slib-3.2.5-fix-paths.patch
deleted file mode 100644
index 9a373c14d733..000000000000
--- a/dev-scheme/slib/files/slib-3.2.5-fix-paths.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- slib-3b5/~RScheme.init 2016-10-10 23:05:39.117046443 +0200
-+++ slib-3b5/RScheme.init 2016-10-10 23:06:47.242857550 +0200
-@@ -52,7 +52,7 @@
- ;; Use this path if your scheme does not support GETENV
- ;; or if SCHEME_LIBRARY_PATH is not set.
- (case (software-type)
-- ((unix) "/usr/lib/slib/")
-+ ((unix) "/usr/share/slib/")
- ((vms) "lib$scheme:")
- ((ms-dos) "C:\\SLIB\\")
- (else "")))))
---- slib-3b5/~gambit.init 2016-10-10 23:05:20.939634454 +0200
-+++ slib-3b5/gambit.init 2016-10-10 23:07:46.571968697 +0200
-@@ -38,7 +38,7 @@
- (let ((impl-path
- (or (getenv "GAMBIT_IMPLEMENTATION_PATH")
- (case (software-type)
-- ((unix) "/usr/local/share/gambc/")
-+ ((unix) "/usr/share/gambc/")
- ((vms) "scheme$src:")
- ((ms-dos) "C:\\scheme\\")
- ((windows) "c:/scheme/")
-@@ -65,7 +65,7 @@
- ;; Use this path if your scheme does not support GETENV
- ;; or if SCHEME_LIBRARY_PATH is not set.
- (case (software-type)
-- ((unix) "/usr/local/lib/slib/")
-+ ((unix) "/usr/share/slib/")
- ((macos) (string-append (implementation-vicinity) "slib:"))
- ((amiga) "dh0:scm/Library/")
- ((vms) "lib$scheme:")
---- slib-3b5/~guile-2.init 2016-10-10 23:05:46.531807087 +0200
-+++ slib-3b5/guile-2.init 2016-10-10 23:08:00.154538349 +0200
-@@ -199,7 +199,7 @@
- (define implementation-vicinity
- (cond ((getenv "GUILE_IMPLEMENTATION_PATH")
- => (lambda (path) (lambda () path)))
-- (else %site-dir)))
-+ (else %library-dir)))
-
- ;;; (library-vicinity) should be defined to be the pathname of the
- ;;; directory where files of Scheme library functions reside.