blob: 37e207d7d5a956a4009597f1974acf8b21e93d60 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/plt-scheme/plt-scheme-4.2.1.ebuild,v 1.2 2009/08/03 15:55:26 hkbst Exp $
inherit eutils latex-package
SRC_URI="http://download.plt-scheme.org/bundles/${PV}/plt/plt-${PV}-src-unix.tgz
http://pre.plt-scheme.org/installers/plt-${PV}-src-unix.tgz"
#"mirror://gentoo/plt-${PV%%_p*}-src-unix.tgz"
DESCRIPTION="DrScheme programming environment. Includes mzscheme."
HOMEPAGE="http://www.plt-scheme.org"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="backtrace cairo cgc llvm opengl profile X"
RDEPEND="X? ( x11-libs/libICE
x11-libs/libSM
x11-libs/libXaw
>=x11-libs/libXft-2.1.12
x11-libs/libXrender
media-libs/freetype
media-libs/fontconfig
cairo? ( x11-libs/cairo )
media-libs/jpeg
opengl? ( virtual/opengl )
media-libs/libpng
sys-libs/zlib )"
DEPEND="${RDEPEND} !dev-tex/slatex"
S="${WORKDIR}/plt-${PV%%_p*}/src"
pkg_setup() {
if use cairo && use X; then
if ! built_with_use x11-libs/cairo X; then
eerror "Cairo must be built with X use flag"
die "Cairo must be built with X use flag"
fi
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/typo.patch
#remove bundled libraries
rm -rf wxcommon/{jpeg,libpng,zlib}
sed "s,docdir=\"\${datadir}/plt/doc,docdir=\"\${datadir}/doc/${PF}," -i configure || die
}
src_compile() {
# according to vapier, we should use the bundled libtool
# such that we don't preclude cross-compile. Thus don't use
# --enable-lt=/usr/bin/libtool
econf $(use_enable X mred) \
--enable-shared \
--disable-perl \
$(use_enable backtrace) \
$(use_enable cairo) \
$(use_enable llvm) \
$(use_enable opengl gl) \
$(use_enable profile gprof) \
--enable-xft \
--enable-xrender
if use cgc; then
emake both || die "emake both failed"
else
emake || die "emake failed"
fi
}
src_install() {
# deal with slatex
insinto /usr/share/texmf/tex/latex/slatex/
doins ../collects/slatex/slatex.sty
if use cgc; then
emake DESTDIR="${D}" install-both || die "emake install-both failed"
else
emake DESTDIR="${D}" install || die "emake install failed"
fi
if use X; then
newicon ../collects/icons/PLT-206.png drscheme.png
make_desktop_entry drscheme "DrScheme" drscheme "Development"
fi
}
|