diff options
author | 2004-08-26 12:04:15 +0000 | |
---|---|---|
committer | 2004-08-26 12:04:15 +0000 | |
commit | 5e532e0ae7a4e224c18ae44667e563f0b0a6a219 (patch) | |
tree | f5a7a422ed19e02da4e9fdc9ee64b1fa13c5d7ce /app-emacs/tramp/tramp-2.0.44.ebuild | |
parent | Marked as stable. (Manifest recommit) (diff) | |
download | gentoo-2-5e532e0ae7a4e224c18ae44667e563f0b0a6a219.tar.gz gentoo-2-5e532e0ae7a4e224c18ae44667e563f0b0a6a219.tar.bz2 gentoo-2-5e532e0ae7a4e224c18ae44667e563f0b0a6a219.zip |
Version bumped. Marked previous version stable on x86, alpha and ppc. Removed old ebuilds.
Diffstat (limited to 'app-emacs/tramp/tramp-2.0.44.ebuild')
-rw-r--r-- | app-emacs/tramp/tramp-2.0.44.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-emacs/tramp/tramp-2.0.44.ebuild b/app-emacs/tramp/tramp-2.0.44.ebuild new file mode 100644 index 000000000000..50669a96cc84 --- /dev/null +++ b/app-emacs/tramp/tramp-2.0.44.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/tramp-2.0.44.ebuild,v 1.1 2004/08/26 12:04:15 usata Exp $ + +inherit elisp + +IUSE="" + +DESCRIPTION="TRAMP is a package for editing remote files similar to ange-ftp but with rlogin, telnet and/or ssh" +HOMEPAGE="http://savannah.nongnu.org/projects/tramp/" +SRC_URI="http://savannah.nongnu.org/download/tramp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~alpha ~amd64 ~ppc" + +DEPEND="virtual/emacs" + +src_compile() { + + econf || die "econf failed" + emake || die "compile problem" +} + +src_install() { + + dodir /usr/share/info + dodir /usr/share/emacs/etc + dodir /usr/share/emacs/site-lisp/tramp + + einstall lispdir=${D}/usr/share/emacs/site-lisp/tramp || die + + mv ${D}/usr/share/info/tramp ${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-site-file-install ${FILESDIR}/50tramp-gentoo.el + + dodoc README ChangeLog CONTRIBUTORS +} |