blob: c2f36513e25d4c2bc220a5f64cde778f6cdd93d4 (
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
94
95
96
97
98
99
100
101
102
103
104
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/mupad/mupad-2.5.2-r1.ebuild,v 1.2 2003/09/28 16:32:50 pyrania Exp $
IUSE="mupad-noscilab"
VER=`echo $PV|awk -F. '{ print $1$2$3 }'`
URLPATH="ftp://ftp.mupad.de/MuPAD/distrib/unix/"
INSTDIR="/usr/lib/mupad"
INSTBINDIR="${INSTDIR}/share/bin"
BINDIR="/usr/bin"
RESTRICT="nostrip"
DESCRIPTION="MuPAD is an open computer algebra system"
HOMEPAGE="http://www.mupad.de/index_uni.shtml"
SRC_URI="${URLPATH}/linux_libs.tgz
${URLPATH}/share_${VER}.tgz
${URLPATH}/bin_linux_scilab_${VER}.tgz"
# If version is 2.5.2, download documentation patch
if [ "${VER}" = "252" ] ; then
SRC_URI="${SRC_URI} ${URLPATH}/docpatch25x.tgz"
fi
#see also http://www.sciface.com/personal.shtml
LICENSE="mupad"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/glibc"
RDEPEND="=dev-lang/tk-8.3*"
src_unpack() {
echo -n ""
}
src_compile() {
echo -n ""
}
src_install() {
einfo "Unpacking binary distribution ..."
einfo " - Creating container directory ..."
dodir ${INSTDIR}
einfo " - Unpacking common files ..."
tar -C ${D}${INSTDIR} -xzpf ${DISTDIR}/share_${VER}.tgz \
> /dev/null 2>&1 || die
einfo " - Unpacking Linux binaries for MuPAD and Scilab ..."
tar -C ${D}${INSTDIR} -xzpf ${DISTDIR}/bin_linux_scilab_${VER}.tgz \
> /dev/null 2>&1 || die
einfo " - Unpacking support libs for Linux binaries ..."
tar -C ${D}${INSTDIR} -xzpf ${DISTDIR}/linux_libs.tgz \
> /dev/null 2>&1 || die
# This (conditional) patch has to be last, obviously
if [ "${VER}" = "252" ] ; then
einfo "Unpacking documentation patch for version 2.5.2 ..."
tar -C ${D}${INSTDIR} -xzpf ${DISTDIR}/docpatch25x.tgz \
> /dev/null 2>&1 || die
fi
einfo "Making wrapper scripts for executables ..."
dodir ${BINDIR}
FILES="mupad xmupad"
for FILE in $FILES; do
einfo " - ${FILE}"
# How do I get this do "die" if it fails?
cat > ${D}${BINDIR}/${FILE} <<-ENDOFSCRIPT
#!/bin/sh
exec ${INSTBINDIR}/${FILE}
ENDOFSCRIPT
fperms 0755 ${BINDIR}/${FILE} || die
done
#move docs to the roper place
dodir /usr/share/doc/${PF}/
mv ${D}/usr/lib/mupad/{INSTALL,LICENSE} ${D}/usr/share/doc/${PF}/
for fn in changes copyright doc; do dosym /usr/lib/mupad/share/$fn /usr/share/doc/${PF}; done
#remove scilab stuff if user set the flag
use mupad-noscilab && rm -rf ${D}/usr/lib/mupad/packages/scilab/
}
pkg_postinst() {
echo ""
einfo "SOME IMPORTANT NOTES:"
einfo ""
einfo " - This version of MuPAD has Scilab functionality"
einfo " integrated, so if you have Scilab installed already, "
einfo " you might find it to be redundant."
einfo ""
einfo " - MuPAD is only free for non-commercial use. Visit"
einfo " http://www.mupad.com/ for commercial downloads."
einfo ""
einfo " - In this non-commercial version, you must register to"
einfo " obtain a license key in order to deactivate the memory"
einfo " limit. The memory limit prevents large calculations."
einfo " Read the documentation or visit"
einfo ""
einfo " ${HOMEPAGE}"
einfo ""
einfo " for more info."
echo ""
}
|