diff options
author | 2003-08-04 01:17:03 +0000 | |
---|---|---|
committer | 2003-08-04 01:17:03 +0000 | |
commit | 30a71a6aeab0e20ee509501702934130da20160c (patch) | |
tree | d09a750bf2e9fac77f80c5f6183e5dcbdb2faadc /app-emacs/tramp | |
parent | version bump, closing bug #22380 (diff) | |
download | historical-30a71a6aeab0e20ee509501702934130da20160c.tar.gz historical-30a71a6aeab0e20ee509501702934130da20160c.tar.bz2 historical-30a71a6aeab0e20ee509501702934130da20160c.zip |
version bump, closing bug #22380
Diffstat (limited to 'app-emacs/tramp')
-rw-r--r-- | app-emacs/tramp/Manifest | 4 | ||||
-rw-r--r-- | app-emacs/tramp/files/digest-tramp-2.0.36 | 1 | ||||
-rw-r--r-- | app-emacs/tramp/tramp-2.0.36.ebuild | 54 |
3 files changed, 57 insertions, 2 deletions
diff --git a/app-emacs/tramp/Manifest b/app-emacs/tramp/Manifest index f1b47c905079..af4a44febb32 100644 --- a/app-emacs/tramp/Manifest +++ b/app-emacs/tramp/Manifest @@ -1,6 +1,6 @@ -MD5 7a4ea96b47520b21eaf8109ba6e6ea7b ChangeLog 409 +MD5 c10cf4f58e00ee9802a75f7c22d75e2e ChangeLog 676 MD5 3b2617efa682f6182b0aa1f24615f7e1 tramp-20020411.ebuild 1004 -MD5 3855c1f0a7db5eab7e7f72359bb50618 tramp-2.0.36.ebuild 1369 +MD5 63252bc0ffed7e19d76546bf17d025ed tramp-2.0.36.ebuild 1366 MD5 de3dbaf4187cea512beb7be264340f8c files/50tramp-gentoo.el 100 MD5 5932196191b6fd789fdfd5bb23835049 files/digest-tramp-20020411 66 MD5 2c1576024eea4a236f049c8c603bc32f files/digest-tramp-2.0.36 64 diff --git a/app-emacs/tramp/files/digest-tramp-2.0.36 b/app-emacs/tramp/files/digest-tramp-2.0.36 new file mode 100644 index 000000000000..8902366f67a3 --- /dev/null +++ b/app-emacs/tramp/files/digest-tramp-2.0.36 @@ -0,0 +1 @@ +MD5 2e518e5667c4f859c80956041401a868 tramp-2.0.36.tar.gz 262979 diff --git a/app-emacs/tramp/tramp-2.0.36.ebuild b/app-emacs/tramp/tramp-2.0.36.ebuild new file mode 100644 index 000000000000..dbbb91083d85 --- /dev/null +++ b/app-emacs/tramp/tramp-2.0.36.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/tramp-2.0.36.ebuild,v 1.1 2003/08/04 01:16:55 usata Exp $ + +inherit elisp + +IUSE="" + +DESCRIPTION="TRAMP (Transparent Remote Access, Multiple Protocols) is a package for editing remote files, similar to ange-ftp. Whereas ange-ftp uses FTP to connect to the remote host and to transfer the files, TRAMP uses a remote shell connection (rlogin, telnet, ssh)" +HOMEPAGE="http://savannah.nongnu.org/projects/tramp/" +#SRC_URI="mirror://gentoo/${P}.tar.gz" +SRC_URI="http://savannah.nongnu.org/download/tramp/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/emacs" + +S="${WORKDIR}/${P}" + +src_compile() { + econf + emake || die "compile problem" +} + +src_install() { + dodir /usr/share/emacs/site-lisp/tramp + dodir /usr/share/info + dodir /usr/share/emacs/etc + + make install \ + prefix=${D}/usr \ + datadir=${D}/usr/share \ + infodir=${D}/usr/share/info \ + lispdir=${D}/usr/share/emacs/site-lisp/tramp \ + etcdir=${D}/usr/share/emacs/etc \ + || die + + mv ${D}/usr/share/info/tramp ${D}/usr/share/info/tramp-info + + dohtml texi/*.html + + elisp-site-file-install ${FILESDIR}/50tramp-gentoo.el + + dodoc README ChangeLog CONTRIBUTORS +} + +pkg_postinst() { + elisp-site-regen +} + +pkg_postrm() { + elisp-site-regen +} |