Hi,
it seems that scilab does not work correctly,
here is snip of build log:
----------------------------------
Making all in scilab
make[6]: Entering directory
`/build/getfem++-uJr3zI/getfem++-4.2.1~beta1~svn4453~dfsg/interface/src/scilab'
SCI_DISABLE_TK=1 SCI_JAVA_ENABLE_HEADLESS=1 scilab -nw -nb -f
/build/getfem++-uJr3zI/getfem++-4.2.1~beta1~svn4453~dfsg/interface/src/scilab/makefile_builder.sce
Error: Impossible to define SCIHOME environment variable.
!--error 21
Invalid index.
at line 72 of function listvarFunction called by :
at line 29 of function listvarinfile called by :
at line 826 of function %_sodload called by :
at line 6 of function atomsSystemInit called by :
atomsSystemInit();
at line 107 of exec file called by :
exec('SCI/etc/scilab.start',-1);;exec('/build/getfem++-uJr3zI/getfem++-4.2.1~bet
!--error 21
Invalid index.
at line 72 of function listvarFunction called by :
at line 29 of function listvarinfile called by :
at line 826 of function %_sodload called by :
at line 8 of function atomsQuit called by :
at line 6 of function scilabQuit called by :
scilabQuit();
at line 35 of exec file called by :
exec('SCI/etc/scilab.quit',-1);quit;
make[6]: Leaving directory
`/build/getfem++-uJr3zI/getfem++-4.2.1~beta1~svn4453~dfsg/interface/src/scilab'
----------------------------------
It looks like that scilab and scilab-include packages are excluded
from Build-Depends for mips architecture.
Could you do the same for mipsel?
Also it is needed to add mipsel in disable_scilab_archs list into debian rules
file.
I attached all changes needed for mipsel.
With this changes, package was built successfully.
Could you consider applying these changes?
Regards,
Dejan Latinović
diff -uNr debian.orig/control debian/control
--- debian.orig/control 2013-11-02 18:38:44.000000000 +0000
+++ debian/control 2013-12-04 15:47:55.000000000 +0000
@@ -22,8 +22,8 @@
python-numpy,
python-scipy,
python-support (>= 1.0.4),
- scilab [!mips !kfreebsd-amd64 !kfreebsd-i386 !hurd-i386 !s390x],
- scilab-include [!mips !kfreebsd-amd64 !kfreebsd-i386 !hurd-i386 !s390x]
+ scilab [!mips !mipsel !kfreebsd-amd64 !kfreebsd-i386 !hurd-i386 !s390x],
+ scilab-include [!mips !mipsel !kfreebsd-amd64 !kfreebsd-i386 !hurd-i386 !s390x]
Standards-Version: 3.9.4
Section: libs
Homepage: http://home.gna.org/getfem/
@@ -116,7 +116,7 @@
Pre-Depends:
${misc:Pre-Depends}
Multi-Arch: same
-Architecture: alpha amd64 armel armhf i386 ia64 mips mipsel powerpc s390 s390x sparc
+Architecture: alpha amd64 armel armhf i386 ia64 powerpc s390 s390x sparc
Depends:
libgetfem4++ (= ${binary:Version}),
scilab,
diff -uNr debian.orig/rules debian/rules
--- debian.orig/rules 2013-11-02 18:38:44.000000000 +0000
+++ debian/rules 2013-12-03 18:03:25.000000000 +0000
@@ -18,7 +18,7 @@
--enable-muparser --enable-mumps \
--with-mumps="-lsmumps_seq -ldmumps_seq -lcmumps_seq -lzmumps_seq -lpord_seq"
-disable_scilab_archs = mips kfreebsd-amd64 kfreebsd-i386 s390x hurd-i386
+disable_scilab_archs = mips mipsel kfreebsd-amd64 kfreebsd-i386 s390x hurd-i386
ifneq (,$(filter $(DEB_HOST_ARCH), $(disable_scilab_archs)))
configure_flags += --disable-scilab
else