summaryrefslogtreecommitdiff
path: root/editors/mode-info
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2002-08-10 04:35:28 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2002-08-10 04:35:28 +0000
commitf124555536ce4b815ff160312c094545c36ec440 (patch)
tree702199d3b5e34c9ba151483313d8c26565451c75 /editors/mode-info
parentAdd pd-0.35.23 (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_6_2'.release/4.6.2
Notes
Notes: svn path=/head/; revision=64310 svn path=/tags/RELEASE_4_6_2/; revision=64312; tag=release/4.6.2
Diffstat (limited to 'editors/mode-info')
-rw-r--r--editors/mode-info/Makefile40
-rw-r--r--editors/mode-info/distinfo1
-rw-r--r--editors/mode-info/files/ELISP_CFG3
-rw-r--r--editors/mode-info/files/elisp-info-setup.el11
-rw-r--r--editors/mode-info/pkg-comment1
-rw-r--r--editors/mode-info/pkg-descr9
-rw-r--r--editors/mode-info/pkg-plist4
7 files changed, 0 insertions, 69 deletions
diff --git a/editors/mode-info/Makefile b/editors/mode-info/Makefile
deleted file mode 100644
index 3c621c521c78..000000000000
--- a/editors/mode-info/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-# New ports collection makefile for: elisp-info.el
-# Date Created: 21 Jan 2002
-# Whom: Yoichi NAKAYAMA <yoichi@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= elisp-info
-PORTVERSION= 2.11
-CATEGORIES= japanese elisp
-MASTER_SITES= http://namazu.org/~tsuchiya/elisp/
-DISTNAME= ${PORTNAME}
-EXTRACT_SUFX= .el
-
-MAINTAINER= yoichi@FreeBSD.org
-
-BUILD_DEPENDS= ${LOCALBASE}/info/elisp-ja:${PORTSDIR}/japanese/elisp-manual
-RUN_DEPENDS= ${LOCALBASE}/info/elisp-ja:${PORTSDIR}/japanese/elisp-manual
-
-NO_WRKSUBDIR= yes
-EXTRACT_CMD= ${CP}
-EXTRACT_BEFORE_ARGS= -p
-EXTRACT_AFTER_ARGS= ./
-
-EMACS_PORT_NAME?= emacs21
-EMACS_NO_RUN_DEPENDS= yes
-LISPDIR?= ${PREFIX}/${EMACS_SITE_LISPDIR}/${PORTNAME}
-
-post-extract:
- ${CP} ${FILESDIR}/ELISP_CFG ${WRKDIR}
-do-build:
- (cd ${WRKDIR}; \
- ${EMACS_CMD} -batch -l ./ELISP_CFG -l ./${PORTNAME}.el -f ${PORTNAME}-make-index)
-do-install:
- ${MKDIR} ${LISPDIR}
- ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.el ${LISPDIR}
- ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-index.el ${LISPDIR}
- ${INSTALL_DATA} ${FILESDIR}/${PORTNAME}-setup.el ${LISPDIR}
-
-.include <bsd.port.mk>
diff --git a/editors/mode-info/distinfo b/editors/mode-info/distinfo
deleted file mode 100644
index 08cb74c396ca..000000000000
--- a/editors/mode-info/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (elisp-info.el) = 8f1d82402b087992586186597a88fe4c
diff --git a/editors/mode-info/files/ELISP_CFG b/editors/mode-info/files/ELISP_CFG
deleted file mode 100644
index a426e885e557..000000000000
--- a/editors/mode-info/files/ELISP_CFG
+++ /dev/null
@@ -1,3 +0,0 @@
-(require 'info)
-(info-initialize)
-(setq elisp-info-list '("elisp-ja"))
diff --git a/editors/mode-info/files/elisp-info-setup.el b/editors/mode-info/files/elisp-info-setup.el
deleted file mode 100644
index f1c56717c4b1..000000000000
--- a/editors/mode-info/files/elisp-info-setup.el
+++ /dev/null
@@ -1,11 +0,0 @@
-;; Setup for elisp-info.el
-(require 'elisp-info)
-(eval-after-load "help.el"
- (progn
- (define-key help-map "f" 'elisp-info-describe-function)
- (define-key help-map "d" 'elisp-info-describe-function)
- (define-key help-map "D" 'describe-function)
- (define-key help-map "v" 'elisp-info-describe-variable)
- (define-key help-map "V" 'describe-variable)
- (define-key help-mode-map "i" 'elisp-info-help-to-info)))
-(provide 'elisp-info-setup) \ No newline at end of file
diff --git a/editors/mode-info/pkg-comment b/editors/mode-info/pkg-comment
deleted file mode 100644
index eddebd1dbefd..000000000000
--- a/editors/mode-info/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Functions to refer Emacs-Lisp Reference Manual
diff --git a/editors/mode-info/pkg-descr b/editors/mode-info/pkg-descr
deleted file mode 100644
index ee499a09b98b..000000000000
--- a/editors/mode-info/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-This package provide functions for Emacs with which you can
-find description of function or variable from Emacs-Lisp
-Reference Manual. If you put (require 'elisp-info-setup)
-in ~/.emacs then following key binds are provided.
-
-C-h f (C-h d) : elisp-info-describe-function
-C-h D : describe-function
-C-h v : elisp-info-describe-variable
-C-h V : describe-variable
diff --git a/editors/mode-info/pkg-plist b/editors/mode-info/pkg-plist
deleted file mode 100644
index 80f6c0e28173..000000000000
--- a/editors/mode-info/pkg-plist
+++ /dev/null
@@ -1,4 +0,0 @@
-%%EMACS_SITE_LISPDIR%%/elisp-info/elisp-info.el
-%%EMACS_SITE_LISPDIR%%/elisp-info/elisp-info-index.el
-%%EMACS_SITE_LISPDIR%%/elisp-info/elisp-info-setup.el
-@dirrm %%EMACS_SITE_LISPDIR%%/elisp-info