blob: 51d0ec2def47c7375fbf49ae25cc31e5adce5d28 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/simple-wiki/simple-wiki-1.1.ebuild,v 1.2 2004/06/01 14:09:05 vapier Exp $
inherit elisp
DESCRIPTION="An Emacs mode for editing Wiki pages."
HOMEPAGE="http://emacswiki.org/cgi-bin/wiki.pl?SimpleWikiEditMode"
SRC_URI="http://savannah.nongnu.org/download/http-emacs/http-emacs.pkg/${PV}/http-emacs-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/emacs
=app-emacs/http-emacs-${PV}"
S=${WORKDIR}/http-emacs
SITEFILE=60simple-wiki-gentoo.el
src_compile() {
elisp-comp simple-*.el || die
}
src_install() {
elisp-install ${PN} simple-*.el*
elisp-site-file-install ${FILESDIR}/${SITEFILE}
dodoc CONTRIBUTORS
}
|