diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-04-30 16:07:02 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-04-30 16:07:02 +0000 |
commit | 2bd83e53c3fdcbcc97e46fb1a0fdf2141bd00a02 (patch) | |
tree | d5f91bdd5ce4d7797bef8f152a21293e5891639a /app-emacs | |
parent | Version bumped. Marked previous versions stable. Removed old ebuilds. (Manife... (diff) | |
download | gentoo-2-2bd83e53c3fdcbcc97e46fb1a0fdf2141bd00a02.tar.gz gentoo-2-2bd83e53c3fdcbcc97e46fb1a0fdf2141bd00a02.tar.bz2 gentoo-2-2bd83e53c3fdcbcc97e46fb1a0fdf2141bd00a02.zip |
Removed unnecessary files
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/ecb/files/50ecb-gentoo.el | 5 | ||||
-rw-r--r-- | app-emacs/ecb/files/ecb-1.90-gentoo.patch | 45 | ||||
-rw-r--r-- | app-emacs/ecb/files/ecb-help.el-gentoo.patch | 28 | ||||
-rw-r--r-- | app-emacs/ecb/files/ecb.texi-gentoo.patch | 10 |
4 files changed, 0 insertions, 88 deletions
diff --git a/app-emacs/ecb/files/50ecb-gentoo.el b/app-emacs/ecb/files/50ecb-gentoo.el deleted file mode 100644 index 444c67f8ba49..000000000000 --- a/app-emacs/ecb/files/50ecb-gentoo.el +++ /dev/null @@ -1,5 +0,0 @@ - -;;; ecb site-lisp configuration - -(add-to-list 'load-path "@SITELISP@") -(autoload 'ecb-activate "ecb" "Autoload for ecb-activate" t) diff --git a/app-emacs/ecb/files/ecb-1.90-gentoo.patch b/app-emacs/ecb/files/ecb-1.90-gentoo.patch deleted file mode 100644 index 50320b5cb470..000000000000 --- a/app-emacs/ecb/files/ecb-1.90-gentoo.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff -ur ecb-1.90/ecb-help.el ecb-1.90~/ecb-help.el ---- ecb-1.90/ecb-help.el 2003-01-31 07:51:15.000000000 -0600 -+++ ecb-1.90~/ecb-help.el 2003-01-31 19:55:44.000000000 -0600 -@@ -67,16 +67,7 @@ - (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 "@ECB_INFO@" - "*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 -@@ -92,22 +83,7 @@ - :group 'ecb-help - :type 'file) - --(defcustom ecb-help-html-path (concat -- (if ecb-running-xemacs -- (cond ((file-exists-p -- (concat ecb-ecb-dir -- ecb-help-html-subdir -- ecb-help-html-start-file)) -- ecb-help-html-subdir) -- ((file-exists-p -- (concat ecb-ecb-dir -- "../../html/" -- ecb-help-html-start-file)) -- "../../html/") -- (t -- "../../etc/ecb/html/")) -- ecb-help-html-subdir) -- ecb-help-html-start-file) -+(defcustom ecb-help-html-path "@ECB_HTML@" - "*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 diff --git a/app-emacs/ecb/files/ecb-help.el-gentoo.patch b/app-emacs/ecb/files/ecb-help.el-gentoo.patch deleted file mode 100644 index 7b4d82fb1483..000000000000 --- a/app-emacs/ecb/files/ecb-help.el-gentoo.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- ecb-help.el 2002-08-12 14:53:10.000000000 -0500 -+++ /tmp/ecb-help.el 2002-09-01 20:19:32.000000000 -0500 -@@ -57,19 +57,18 @@ - '("html" "info"))))
- ecb-show-help-format)))
- (if (equal f 'info)
-- (if (file-exists-p (concat ecb-ecb-dir "ecb.info"))
-- (info (concat ecb-ecb-dir "ecb.info"))
-- (ecb-error "File %s does not exist" (concat ecb-ecb-dir "ecb.info")))
-+ (if (file-exists-p "@ECBINFOFILE@")
-+ (info "@ECBINFOFILE@")
-+ (ecb-error "File %s does not exist" "@ECBINFOFILE@"))
- (message "Opening ECB online-help in a web-browser...")
-- (if (file-exists-p (concat ecb-ecb-dir "ecb.html"))
-+ (if (file-exists-p "@ECBHTMLFILE@")
- (progn
-- (browse-url (concat "file://"
-- (ecb-fix-filename ecb-ecb-dir "ecb.html"))
-+ (browse-url (concat "file://" "@ECBHTMLFILE@")
- (if (boundp 'browse-url-new-window-flag)
- browse-url-new-window-flag
- browse-url-new-window-p))
- (message "Opening ECB online-help in a web-browser...done"))
-- (ecb-error "File %s does not exist" (concat ecb-ecb-dir "ecb.html"))))))
-+ (ecb-error "File %s does not exist" "@ECBHTMLFILE@")))))
-
- ;;
- ;; Problem reporting functions stolen from JDE
diff --git a/app-emacs/ecb/files/ecb.texi-gentoo.patch b/app-emacs/ecb/files/ecb.texi-gentoo.patch deleted file mode 100644 index 7df8064457cf..000000000000 --- a/app-emacs/ecb/files/ecb.texi-gentoo.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- ecb.texi.orig 2002-09-01 20:21:17.000000000 -0500 -+++ ecb.texi 2002-09-01 20:21:31.000000000 -0500 -@@ -37,7 +37,6 @@ -
- @footnotestyle end
-
--@dircategory GNU Emacs Lisp
- @direntry
- * ECB: (ecb). Emacs Code Browser
- @end direntry
|