blob: e435a33ced2eff18ebca2b8a5aaf52543f96a00c (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-wiki/emacs-wiki-2.67.1.ebuild,v 1.1 2005/02/01 08:37:50 mkennedy Exp $
inherit elisp
DESCRIPTION="Maintain a local Wiki using Emacs-friendly markup"
HOMEPAGE="http://www.mwolson.org/projects/EmacsWiki.html
http://www.emacswiki.org/cgi-bin/wiki.pl?EmacsWikiMode"
SRC_URI="http://ftp.debian.org/debian/pool/main/e/emacs-wiki/emacs-wiki_${PV}.orig.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="app-emacs/htmlize
app-emacs/table
app-emacs/httpd
sys-apps/texinfo"
SITEFILE=50emacs-wiki-gentoo.el
src_unpack() {
unpack ${A}
# These will be made part of the emacs-wiki installation until
# they are packaged separately
mv ${S}/contrib/{update-remote,cgi}.el ${S}/
}
src_compile() {
elisp-comp *.el || die
makeinfo emacs-wiki.texi || die
}
src_install() {
elisp-install ${PN} *.{el,elc}
elisp-site-file-install ${FILESDIR}/${SITEFILE}
doinfo *.info*
dodoc ChangeLog*
docinto examples
dodoc examples/default.css
}
|