#9493: Remove extra baggage from ECL 10.2.1.p1 (again)
------------------------------+---------------------------------------------
Reporter: leif | Owner: tbd
Type: task | Status: new
Priority: major | Milestone: sage-4.5
Component: packages | Keywords:
Author: Leif Leonhardy | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
------------------------------+---------------------------------------------
Comment(by leif):
Modified {{{spkg-install}}} to allow removal of GMP (suggestion):
{{{
#!patch
--- ecl-stripped-v1/ecl-10.2.1.p2/spkg-install 2010-07-12
05:22:11.000000000 +0200
+++ ecl-stripped-v2/ecl-10.2.1.p2/spkg-install 2010-07-14
02:21:22.000000000 +0200
@@ -154,6 +154,15 @@
# We clear MAKEFLAGS to fix building multiple spkgs in parallel on OS X.
export MAKEFLAGS=
+if [ -d patches ] && [ `ls patches` != "" ]; then
+ echo "Applying patches..."
+
+ test -f patches/src.src.configure && cp -pv patches/src.src.configure
src/src/configure
+
+ echo "Finished applying patches."
+ echo " "
+fi
+
set +e
cd src
@@ -165,9 +174,9 @@
# 1) OpenSolaris (SunOS 5.11)
# 2) Intel or AMD CPU
# 3) 64-bit build
- ./configure --prefix=$SAGE_LOCAL --with-dffi=no
+ ./configure --prefix=$SAGE_LOCAL --with-dffi=no --with-gmp-
prefix=$SAGE_LOCAL
else
- ./configure --prefix=$SAGE_LOCAL
+ ./configure --prefix=$SAGE_LOCAL --with-gmp-prefix=$SAGE_LOCAL
fi
if [ $? -ne 0 ]; then
}}}
(v1's {{{spkg-install}}} is unchanged w.r.t. ECL 10.2.1.p1.)
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9493#comment:2>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.