blob: 65360a1d91525660e401433172153790a577f5a6 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-6.28d.ebuild,v 1.1 2009/06/27 20:39:58 ulm Exp $
inherit elisp
DESCRIPTION="An Emacs mode for notes and project planning"
HOMEPAGE="http://www.orgmode.org/"
SRC_URI="http://orgmode.org/org-${PV}.tar.gz"
LICENSE="GPL-3 FDL-1.3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE=""
S="${WORKDIR}/org-${PV}"
SITEFILE="51${PN}-gentoo.el"
src_compile() {
# remove autoload file to make sure that it is regenerated with
# the right Emacs version
rm -f lisp/org-install.el
emake || die "emake failed"
}
src_install() {
emake \
prefix="${D}/usr" \
lispdir="${D}${SITELISP}/${PN}" \
infodir="${D}/usr/share/info" \
install || die "emake install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
mv doc/org doc/org.info
doinfo doc/org.info || die "doinfo failed"
dodoc README ChangeLog Changes.org doc/org.pdf doc/orgcard.pdf \
|| die "dodoc failed"
}
|