diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2004-09-09 17:42:07 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2004-09-09 17:42:07 +0000 |
commit | c4243bda449be20905ff96c0d697f46209ba2efe (patch) | |
tree | dd1a5d9e501c1108219403e7ecba065a6fdc9239 /app-emacs/ssh-login | |
parent | New nALFS version (diff) | |
download | overlay-c4243bda449be20905ff96c0d697f46209ba2efe.tar.gz overlay-c4243bda449be20905ff96c0d697f46209ba2efe.tar.bz2 overlay-c4243bda449be20905ff96c0d697f46209ba2efe.zip |
New ssh ebuild for emacs
svn path=/; revision=36
Diffstat (limited to 'app-emacs/ssh-login')
-rw-r--r-- | app-emacs/ssh-login/Manifest | 3 | ||||
-rw-r--r-- | app-emacs/ssh-login/files/50ssh-login-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/ssh-login/files/digest-ssh-login-1.9 | 1 | ||||
-rw-r--r-- | app-emacs/ssh-login/ssh-login-1.9.ebuild | 36 |
4 files changed, 44 insertions, 0 deletions
diff --git a/app-emacs/ssh-login/Manifest b/app-emacs/ssh-login/Manifest new file mode 100644 index 0000000..4cd31a6 --- /dev/null +++ b/app-emacs/ssh-login/Manifest @@ -0,0 +1,3 @@ +MD5 a3909dcb9865d9231d806d51d3f4ab00 ssh-login-1.9.ebuild 721 +MD5 eae9cc8023fc3db913edd88ed32db912 files/digest-ssh-login-1.9 52 +MD5 c8f908098c8082dc82798708aadffa89 files/50ssh-login-gentoo.el 54 diff --git a/app-emacs/ssh-login/files/50ssh-login-gentoo.el b/app-emacs/ssh-login/files/50ssh-login-gentoo.el new file mode 100644 index 0000000..bd953bc --- /dev/null +++ b/app-emacs/ssh-login/files/50ssh-login-gentoo.el @@ -0,0 +1,4 @@ + +;;; ssh-mode site-lisp configuration + +(require 'ssh) diff --git a/app-emacs/ssh-login/files/digest-ssh-login-1.9 b/app-emacs/ssh-login/files/digest-ssh-login-1.9 new file mode 100644 index 0000000..5dc77ca --- /dev/null +++ b/app-emacs/ssh-login/files/digest-ssh-login-1.9 @@ -0,0 +1 @@ +MD5 344c0eae6d13569999806f614d537f78 ssh.el.gz 5321 diff --git a/app-emacs/ssh-login/ssh-login-1.9.ebuild b/app-emacs/ssh-login/ssh-login-1.9.ebuild new file mode 100644 index 0000000..94338c4 --- /dev/null +++ b/app-emacs/ssh-login/ssh-login-1.9.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +inherit elisp + +IUSE="" + +DESCRIPTION="Allows to use an emacs buffer for remote login" +HOMEPAGE="http://www.splode.com/~friedman/" +SRC_URI="http://www.gunnarwrobel.de/downloads/${PN/-login/}.el.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/emacs" + +SITEFILE=50ssh-login-gentoo.el +S="${WORKDIR}" + +src_compile() { + elisp-compile *.el || die +} + +src_install() { + elisp-install ${PN/-login/} *.el *.elc + elisp-site-file-install ${FILESDIR}/${SITEFILE} +} + +pkg_postinst() { + elisp-site-regen + einfo "Please see ${SITELISP}/${PN}/ssh.el for the complete documentation." +} + +pkg_postrm() { + elisp-site-regen +} |