blob: dc2f13551718597a13ba0aaba25399d1c155c37c (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/texmacs/texmacs-1.0.7.2.ebuild,v 1.9 2011/03/07 12:57:33 jlec Exp $
EAPI=2
inherit autotools
MY_P=${P/tex/TeX}-src
DESCRIPTION="Wysiwyg text processor with high-quality maths"
HOMEPAGE="http://www.texmacs.org/"
SRC_URI="
ftp://ftp.texmacs.org/pub/TeXmacs/targz/${MY_P}.tar.gz
ftp://ftp.texmacs.org/pub/TeXmacs/targz/TeXmacs-600dpi-fonts.tar.gz"
LICENSE="GPL-3"
SLOT="0"
IUSE="imlib jpeg netpbm svg spell"
KEYWORDS="alpha amd64 ppc sparc x86"
RDEPEND="
dev-scheme/guile[deprecated]
virtual/latex-base
app-text/ghostscript-gpl
media-libs/freetype
x11-libs/libXext
x11-apps/xmodmap
imlib? ( media-libs/imlib2 )
jpeg? ( || ( media-gfx/imagemagick media-gfx/jpeg2ps ) )
svg? ( || ( media-gfx/inkscape gnome-base/librsvg:2 ) )
netpbm? ( media-libs/netpbm )
spell? ( || ( >=app-text/ispell-3.2 >=app-text/aspell-0.5 ) )"
DEPEND="${RDEPEND}
x11-proto/xproto"
S="${WORKDIR}/${MY_P}"
src_prepare() {
# don't strip
epatch "${FILESDIR}"/${PN}-strip.patch
eautoreconf
}
src_configure() {
econf $(use_with imlib imlib2) \
--enable-optimize="${CXXFLAGS}"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc TODO || die "dodoc failed"
domenu "${FILESDIR}"/TeXmacs.desktop || die "domenu failed"
# now install the fonts
insinto /usr/share/texmf
doins -r "${WORKDIR}/fonts" || die "installing fonts failed"
}
|