# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: # ECVS_SERVER="cvs.savannah.nongnu.org:/sources/tramp" ECVS_MODULE="tramp" ECVS_USER="anonymous" ECVS_PASS="" ECVS_CVS_OPTIONS="-dP -z3" inherit elisp cvs autotools # eutils IUSE="" S=${WORKDIR}/${ECVS_MODULE} DESCRIPTION="edit remote files like ange-ftp but with rlogin, telnet and/or ssh" HOMEPAGE="http://savannah.nongnu.org/projects/tramp/" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~alpha ~sparc ~amd64" WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" DEPEND="virtual/emacs" src_unpack() { cvs_src_unpack } # tramp cvs needs autoconf to generate config script src_compile() { eautoconf || die "eautoconf failed" econf \ --with-emacs \ --with-lispdir=/usr/share/emacs/site-lisp/tramp-cvs \ --infodir=/usr/share/info \ --datadir=/usr/share \ --with-contrib || die "econf failed" emake || die } src_install() { einstall \ lispdir=${D}/usr/share/emacs/site-lisp/tramp-cvs \ || die # elisp-site-file-install ${FILESDIR}/70${PN}-gentoo.el dodoc ChangeLog NEWS README README-CVS }