blob: 3a1d09b5ff6886e19cc17fb36f0cab713c4276cb (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/http-emacs/http-emacs-1.1.ebuild,v 1.2 2004/06/01 14:09:04 vapier Exp $
inherit elisp
DESCRIPTION="http-emacs includes http-post and http-get which allows you to fetch, render and post html pages via emacs. It also includes simple-wiki-* modules, which allow you to edit remote (and local) wikis via emacs, and also includes a major-mode for the same."
HOMEPAGE="http://emacswiki.org/cgi-bin/wiki.pl?SimpleWikiEditMode"
SRC_URI="http://savannah.nongnu.org/download/http-emacs/http-emacs.pkg/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/emacs"
S=${WORKDIR}/${PN}
SITEFILE=50http-emacs-gentoo.el
src_compile() {
elisp-comp http-*.el || die
}
src_install() {
elisp-install ${PN} http-*.el*
elisp-site-file-install ${FILESDIR}/${SITEFILE}
dodoc CONTRIBUTORS
}
|