diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-11-10 21:04:41 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-11-10 21:04:41 +0000 |
commit | 4b6425127692392230f0174f2ccfa4c6e0c30983 (patch) | |
tree | 393d53f6a756b927cf994ecb5c6e250b4c81c91c /app-emacs | |
parent | Remove USE arts (deprecated). (diff) | |
download | historical-4b6425127692392230f0174f2ccfa4c6e0c30983.tar.gz historical-4b6425127692392230f0174f2ccfa4c6e0c30983.tar.bz2 historical-4b6425127692392230f0174f2ccfa4c6e0c30983.zip |
Version bump. Move site-init file to canonical name.
Package-Manager: portage-2.2_rc49/cvs/Linux i686
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/tramp/ChangeLog | 8 | ||||
-rw-r--r-- | app-emacs/tramp/files/50tramp-gentoo.el | 5 | ||||
-rw-r--r-- | app-emacs/tramp/tramp-2.1.17.ebuild | 42 |
3 files changed, 54 insertions, 1 deletions
diff --git a/app-emacs/tramp/ChangeLog b/app-emacs/tramp/ChangeLog index 255a68ab60c4..350f5cfe16d8 100644 --- a/app-emacs/tramp/ChangeLog +++ b/app-emacs/tramp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emacs/tramp # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.87 2009/09/07 10:08:37 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.88 2009/11/10 21:04:40 ulm Exp $ + +*tramp-2.1.17 (10 Nov 2009) + + 10 Nov 2009; Ulrich Mueller <ulm@gentoo.org> +files/50tramp-gentoo.el, + +tramp-2.1.17.ebuild: + Version bump. Move site-init file to canonical name. 07 Sep 2009; Christian Faulhammer <fauli@gentoo.org> -tramp-2.1.15.ebuild: clean up diff --git a/app-emacs/tramp/files/50tramp-gentoo.el b/app-emacs/tramp/files/50tramp-gentoo.el new file mode 100644 index 000000000000..9764dc035b55 --- /dev/null +++ b/app-emacs/tramp/files/50tramp-gentoo.el @@ -0,0 +1,5 @@ +(add-to-list 'load-path "@SITELISP@") +(setq auto-save-file-name-transforms + `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)" + ,(expand-file-name "\\2" temporary-file-directory)))) +(load "tramp-autoloads" nil t) diff --git a/app-emacs/tramp/tramp-2.1.17.ebuild b/app-emacs/tramp/tramp-2.1.17.ebuild new file mode 100644 index 000000000000..bd13c64053da --- /dev/null +++ b/app-emacs/tramp/tramp-2.1.17.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/tramp-2.1.17.ebuild,v 1.1 2009/11/10 21:04:40 ulm Exp $ + +inherit elisp eutils + +DESCRIPTION="Edit remote files like ange-ftp but with rlogin, telnet and/or ssh" +HOMEPAGE="http://www.gnu.org/software/tramp/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3 FDL-1.3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" + elisp-make-autoload-file lisp/${PN}-autoloads.el lisp \ + || die "elisp-make-autoload-file failed" +} + +src_install() { + einstall lispdir="${D}${SITELISP}/tramp" || die + + mv "${D}"/usr/share/info/tramp{,.info} + + dohtml texi/*.html + if [ -f texi/tramp.dvi ]; then + insinto /usr/share/doc/${PF} + doins texi/tramp.dvi + fi + + elisp-install ${PN} lisp/${PN}-autoloads.el || die + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + + dodoc README ChangeLog CONTRIBUTORS || die + newdoc lisp/ChangeLog ChangeLog-lisp || die + newdoc texi/ChangeLog ChangeLog-texi || die +} |