diff options
author | 2004-07-12 04:39:31 +0000 | |
---|---|---|
committer | 2004-07-12 04:39:31 +0000 | |
commit | a2df6952f4c1b6dbeeda737eda165d68dd3fbd77 (patch) | |
tree | 947d3901a79c65f05f92d000b6f5f02be85c8d07 /app-emacs/tramp/tramp-2.0.42.ebuild | |
parent | version bump, added remaining arches for testing. (Manifest recommit) (diff) | |
download | gentoo-2-a2df6952f4c1b6dbeeda737eda165d68dd3fbd77.tar.gz gentoo-2-a2df6952f4c1b6dbeeda737eda165d68dd3fbd77.tar.bz2 gentoo-2-a2df6952f4c1b6dbeeda737eda165d68dd3fbd77.zip |
Version bumped.
Diffstat (limited to 'app-emacs/tramp/tramp-2.0.42.ebuild')
-rw-r--r-- | app-emacs/tramp/tramp-2.0.42.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-emacs/tramp/tramp-2.0.42.ebuild b/app-emacs/tramp/tramp-2.0.42.ebuild new file mode 100644 index 000000000000..a30bf63ad65f --- /dev/null +++ b/app-emacs/tramp/tramp-2.0.42.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.42.ebuild,v 1.1 2004/07/12 04:39:31 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 +} |