blob: de404d2dc72b5041d0c30b2d0f4ae95a5f70ace0 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/preview-latex-0.8.1.ebuild,v 1.10 2005/08/24 04:05:09 leonardop Exp $
inherit latex-package elisp-common
DESCRIPTION="Renders embed latex environments such as math or figures in realtime"
HOMEPAGE="http://preview-latex.sourceforge.net/"
SRC_URI="mirror://sourceforge/preview-latex/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ~amd64 ~ppc"
IUSE="emacs xemacs"
# if you don't have either emacs or xemacs, defaults to emacs. bug #54183
DEPEND="emacs? ( virtual/emacs
>=app-emacs/auctex-11.14 )
xemacs? ( virtual/xemacs
>=app-xemacs/auctex-1.32
app-xemacs/fsf-compat )
!xemacs? ( virtual/emacs
>=app-emacs/auctex-11.14 )
virtual/ghostscript
virtual/tetex"
src_unpack() {
unpack ${A}
cp -pPR ${P}/* ${T}
}
src_compile() {
local myconf
export LC_ALL=en_US.ISO8859-1
if use emacs || ! use xemacs ; then
econf --with-emacs \
--with-lispdir=${D}/usr/share/emacs/site-lisp/${PN} \
|| die
emake -j1 || die "make ${PN} for emacs failed"
fi
if use xemacs; then
cd ${T}
econf --with-xemacs \
--with-packagedir=${D}/usr/lib/xemacs/site-packages \
|| die
emake -j1 || die "make ${PN} for xemacs failed"
fi
}
src_install() {
if use emacs || ! use xemacs ; then
# hack.- we cant call texhash within the make install because of
# sandbox violations. doing it later by hand
einstall texmfdir=${D}${TEXMF} TEXHASH=/bin/true || die
elisp-site-file-install ${FILESDIR}/60preview-latex-gentoo.el
fi
if use xemacs; then
cd ${T}
einstall texmfdir=${D}${TEXMF} TEXHASH=/bin/true || die
fi
dodoc ChangeLog FAQ INSTALL PROBLEMS README RELEASE TODO doc/preview-latex.dvi
}
pkg_postinst() {
latex-package_pkg_postinst
use emacs && elisp-site-regen
}
pkg_postrm() {
latex-package_pkg_postrm
use emacs && elisp-site-regen
}
|