summaryrefslogtreecommitdiff
path: root/app-emacs/ecb/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-emacs/ecb/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-emacs/ecb/files')
-rw-r--r--app-emacs/ecb/files/70ecb-gentoo.el2
-rw-r--r--app-emacs/ecb/files/ecb-2.32-gentoo.patch73
2 files changed, 0 insertions, 75 deletions
diff --git a/app-emacs/ecb/files/70ecb-gentoo.el b/app-emacs/ecb/files/70ecb-gentoo.el
deleted file mode 100644
index bc71f7c18e94..000000000000
--- a/app-emacs/ecb/files/70ecb-gentoo.el
+++ /dev/null
@@ -1,2 +0,0 @@
-(add-to-list 'load-path "@SITELISP@")
-(require 'ecb-autoloads)
diff --git a/app-emacs/ecb/files/ecb-2.32-gentoo.patch b/app-emacs/ecb/files/ecb-2.32-gentoo.patch
deleted file mode 100644
index 09d3d86afdcd..000000000000
--- a/app-emacs/ecb/files/ecb-2.32-gentoo.patch
+++ /dev/null
@@ -1,73 +0,0 @@
-Change default paths to Gentoo install locations.
-Allow for compressed Info files.
-
---- ecb-2.32-orig/ecb-common-browser.el 2005-07-11 16:16:01.000000000 +0200
-+++ ecb-2.32/ecb-common-browser.el 2009-03-03 09:42:51.000000000 +0100
-@@ -261,10 +261,7 @@
- ;; additonal images are necessary - but currently i don't think we need
- ;; special images for this analyse-stuff.
- (defcustom ecb-tree-image-icons-directories
-- (let ((base (concat (if ecb-regular-xemacs-package-p
-- (format "%s" (locate-data-directory "ecb"))
-- ecb-ecb-dir)
-- "ecb-images/")))
-+ (let ((base "/usr/share/emacs/etc/ecb/ecb-images/"))
- (cons (concat base "default/height-17")
- (mapcar (function (lambda (i)
- (cons (car i) (concat base (cdr i)))))
---- ecb-2.32-orig/ecb-help.el 2005-07-11 16:16:00.000000000 +0200
-+++ ecb-2.32/ecb-help.el 2009-03-03 09:47:49.000000000 +0100
-@@ -81,16 +81,8 @@
- (const :tag "Html" :value html)))
-
-
--(defcustom ecb-help-info-path (concat
-- (if ecb-running-xemacs
-- (if (file-exists-p
-- (concat ecb-ecb-dir
-- ecb-help-info-subdir
-- ecb-help-info-start-file))
-- ecb-help-info-subdir
-- "../../info/")
-- ecb-help-info-subdir)
-- ecb-help-info-start-file)
-+(defcustom ecb-help-info-path
-+ (concat "/usr/share/info/" ecb-help-info-start-file)
- "*Path where the ECB online help in info format resides.
- This must be the location of the file \"ecb.info\" which comes with the ECB
- distribution. If is installed by unpacking the archive available on the ECB
-@@ -107,24 +99,7 @@
- :type 'file)
-
- (defcustom ecb-help-html-path
-- (if (not ecb-running-xemacs)
-- (concat ecb-help-html-subdir ecb-help-html-start-file)
-- (cond ((file-exists-p
-- (concat ecb-ecb-dir
-- ecb-help-html-subdir
-- ecb-help-html-start-file))
-- (concat ecb-help-html-subdir ecb-help-html-start-file))
-- ((file-exists-p
-- (concat ecb-ecb-dir
-- "../../html/"
-- ecb-help-html-start-file))
-- (concat "../../html/" ecb-help-html-start-file))
-- ((file-exists-p
-- (concat ecb-ecb-dir
-- "../../html/ecb/index.html"))
-- "../../html/ecb/index.html")
-- (t
-- (concat "../../etc/ecb/html/" ecb-help-html-start-file))))
-+ (concat "/usr/share/doc/@PF@/html/" ecb-help-html-start-file)
- "*Path where the ECB online help in HTML format resides.
- This must be the location of the file \"index.html\" which comes with the ECB
- distribution. If is installed by unpacking the archive available on the ECB
-@@ -145,7 +120,7 @@
- "Starts `info' with INFO-FILE. If INFO-FILE does not exists then nil is
- returned otherwise true. If NO-FILE-NOT-EXIST-ERR is not nil then just nil is
- returned if INFO-FILE does not exist otherwise an error is reported."
-- (if (file-exists-p info-file)
-+ (if (file-expand-wildcards (concat info-file "*"))
- (prog1 t
- (info info-file))
- (unless no-file-not-exist-err