summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2003-08-04 01:17:03 +0000
committerMamoru Komachi <usata@gentoo.org>2003-08-04 01:17:03 +0000
commit157b88c11d45543fd7001733b49b2645795b9747 (patch)
tree0c16e57a39a895f9a38af9eecdaea9cc473190a9 /app-emacs/tramp
parentversion bump, closing bug #22380 (diff)
downloadgentoo-2-157b88c11d45543fd7001733b49b2645795b9747.tar.gz
gentoo-2-157b88c11d45543fd7001733b49b2645795b9747.tar.bz2
gentoo-2-157b88c11d45543fd7001733b49b2645795b9747.zip
version bump, closing bug #22380
Diffstat (limited to 'app-emacs/tramp')
-rw-r--r--app-emacs/tramp/ChangeLog9
-rw-r--r--app-emacs/tramp/Manifest4
-rw-r--r--app-emacs/tramp/files/digest-tramp-2.0.361
-rw-r--r--app-emacs/tramp/tramp-2.0.36.ebuild54
4 files changed, 65 insertions, 3 deletions
diff --git a/app-emacs/tramp/ChangeLog b/app-emacs/tramp/ChangeLog
index dd8850ffb079..a033f3322f2a 100644
--- a/app-emacs/tramp/ChangeLog
+++ b/app-emacs/tramp/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-emacs/tramp
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.2 2003/02/12 03:56:37 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.3 2003/08/04 01:16:55 usata Exp $
+
+*tramp-2.0.36 (04 Aug 2003)
+
+ 04 Aug 2003; Mamoru KOMACHI <usata@gentoo.org> tramp-2.0.36.ebuild:
+ Version bumped to the latest release. Ebuild rewritten by chris strom
+ <cstrom@speakeasy.net> according to the change in source structure. This
+ closes bug #22380.
*tramp-20020411 (31 Oct 2002)
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
+}