blob: f05ba82f3c936d8e75bc87c5a1eef3f01e03d7a3 (
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
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/latex-beamer/latex-beamer-3.06.ebuild,v 1.1 2006/01/22 14:26:24 ehmsen Exp $
inherit latex-package elisp-common
DESCRIPTION="LaTeX class for creating presentations using a video projector."
HOMEPAGE="http://latex-beamer.sourceforge.net/"
SRC_URI="mirror://sourceforge/latex-beamer/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="emacs"
DEPEND=">=dev-tex/pgf-1.00
>=dev-tex/xcolor-2.00
emacs? ( app-emacs/auctex )
!>=app-text/tetex-3.0"
src_compile() {
if use emacs ; then
cd emacs
elisp-comp beamer.el || die
fi
}
src_install() {
insinto /usr/share/texmf/tex/latex/beamer
doins -r base extensions solutions themes || die
insinto /usr/share/texmf/tex/latex/beamer/emulation
doins emulation/*.sty || die
insinto /usr/share/doc/${PF}
doins -r examples emulation/examples || die
if has_version 'app-office/lyx' ; then
doins -r lyx || die
fi
if use emacs ; then
insinto /usr/share/emacs/site-lisp/auctex/style
doins emacs/beamer.el* || die
fi
dodoc AUTHORS ChangeLog FILES TODO README
insinto /usr/share/doc/${PF}
doins doc/* || die
}
|