blob: 03bc2c873d9cb7e5b84a017747ff2f06c0f2c3cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2004 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.38.ebuild,v 1.4 2004/04/25 17:17:12 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/"
# I cannot find tramp-2.0.38 on master site atm (2004/02/17)
#SRC_URI="http://savannah.nongnu.org/download/tramp/${P}.tar.gz"
SRC_URI="mirror://debian/pool/main/t/tramp/${P/-/_}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
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
}
|