blob: a2becac6036824908c2533bdf096bb63c6635d92 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/wxmaxima/wxmaxima-0.7.3a.ebuild,v 1.7 2008/02/26 17:34:25 bicatali Exp $
WX_GTK_VER="2.6"
inherit eutils autotools wxwidgets fdo-mime
MYP=wxMaxima-${PV}
DESCRIPTION="Graphical frontend to Maxima, using the wxWidgets toolkit."
HOMEPAGE="http://wxmaxima.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MYP}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="unicode"
DEPEND=">=dev-libs/libxml2-2.5.0
=x11-libs/wxGTK-2.6*"
RDEPEND="${DEPEND}
>=sci-mathematics/maxima-5.13.0"
S="${WORKDIR}/${MYP}"
pkg_setup() {
if use unicode; then
need-wxwidgets unicode
else
need-wxwidgets ansi
fi
}
src_compile () {
# consistent package names
sed -i \
-e "s:${datadir}/wxMaxima:${datadir}/${PN}:g" \
Makefile.in data/Makefile.in || die "sed failed"
sed -i \
-e 's:share/wxMaxima:share/wxmaxima:g' \
src/wxMaxima.cpp || die "sed failed"
econf \
--enable-dnd \
--enable-printing \
--with-wx-config=${WX_CONFIG} \
$(use_unicode unicode-glyphs) \
|| die "econf failed"
emake || die "emake failed"
}
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
newicon maxima-new.png wxmaxima.png
make_desktop_entry wxmaxima wxMaxima wxmaxima
dodir /usr/share/doc/${PF}
dosym /usr/share/${PN}/README /usr/share/doc/${PF}/README
dodoc AUTHORS
}
pkg_postinst() {
fdo-mime_desktop_database_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
}
|