Eric4: Difference between revisions

From RedwoodCenter
Jump to navigationJump to search
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Qt 4 ==
== Qt 4 ==


<!-- get Qt 4 binary here: ftp://ftp.trolltech.com/qt/source/qt-mac-opensource-4.3.1.dmg and install by double-clicking.
<!-- get qt4-mac sources here: ftp://ftp.trolltech.com/qt/source/qt-mac-opensource-src-4.3.1.tar.gz and compile/install:
-->
get qt4-mac sources here: ftp://ftp.trolltech.com/qt/source/qt-mac-opensource-src-4.3.1.tar.gz and compile/install:


   tar xvzf qt-mac-opensource-src-4.3.1.tar.gz
   tar xvzf qt-mac-opensource-src-4.3.1.tar.gz
   cd qt-mac-opensource-src-4.3.1
   cd qt-mac-opensource-src-4.3.1
   ./configure -prefix /usr/local/qt-4.3.1 -universal -no-sql-mysql -no-qdbus
   ./configure -prefix /usr/local/qt-4.3.1 -universal
   make
   make
  sudo make install
-->
get the qt4-mac binary here ftp://ftp.trolltech.com/qt/source/qt-mac-opensource-4.3.1.dmg and install by double-clicking.
<!--
if you want to create universal binaries by default, edit the file
  /usr/local/Qt4.3/mkspecs/common/mac-g++.conf
and add the following line:
  # on mac intel
  QMAKE_CFLAGS_X86        += -arch ppc
  # on mac ppc
  QMAKE_CFLAGS_PPC        += -arch i386
-->


== QScintilla 2 ==
== QScintilla 2 ==
Line 17: Line 30:
   tar xvzf QScintilla-1.73-gpl-2.1.tar.gz
   tar xvzf QScintilla-1.73-gpl-2.1.tar.gz
   cd QScintilla-1.73-gpl-2.1/Qt4
   cd QScintilla-1.73-gpl-2.1/Qt4
   qmake qscintilla.pro  
   qmake -spec macx-g++ qscintilla.pro
 
now you have a Makefile, but you have to replace the following line
 
  LFLAGS        = -headerpad_max_install_names ... libqscintilla2.3.dylib
 
by
 
  LFLAGS        = -headerpad_max_install_names ... /Library/Frameworks/libqscintilla2.3.dylib
 
also, in the line beginning with
 
  install_header: first FORCE ...
 
you have to replace the three occurrences of /usr/include by /usr/cpp_include
 
now you can build/install:


then doubleclick on qscintilla2.xcodeproj and click 'build' in xcode.
  make
  sudo make install


== sip ==
== sip ==
Line 48: Line 78:


now you can build the python bindings:
now you can build the python bindings:
  python configure.py -n /usr/cpp_include
  make
  sudo make install


== Eric 4 ==
== Eric 4 ==

Latest revision as of 21:58, 30 September 2007

Qt 4

get the qt4-mac binary here ftp://ftp.trolltech.com/qt/source/qt-mac-opensource-4.3.1.dmg and install by double-clicking.

QScintilla 2

get QScintilla 2 here: http://www.riverbankcomputing.com/Downloads/QScintilla2/QScintilla-1.73-gpl-2.1.tar.gz

 tar xvzf QScintilla-1.73-gpl-2.1.tar.gz
 cd QScintilla-1.73-gpl-2.1/Qt4
 qmake -spec macx-g++ qscintilla.pro

now you have a Makefile, but you have to replace the following line

 LFLAGS        = -headerpad_max_install_names ... libqscintilla2.3.dylib

by

 LFLAGS        = -headerpad_max_install_names ... /Library/Frameworks/libqscintilla2.3.dylib
 

also, in the line beginning with

 install_header: first FORCE ...

you have to replace the three occurrences of /usr/include by /usr/cpp_include

now you can build/install:

 make
 sudo make install

sip

get sip here: http://www.riverbankcomputing.com/Downloads/sip4/sip-4.7.1.tar.gz

 tar xvzf sip-4.7.1.tar.gz
 cd sip-4.7.1
 python configure.py -n
 make
 sudo make install

PyQt 4

get PyQt 4 here: http://www.riverbankcomputing.com/Downloads/PyQt4/GPL/PyQt-mac-gpl-4.3.1.tar.gz

 tar xvzf PyQt-mac-gpl-4.3.1.tar.gz
 cd PyQt-mac-gpl-4.3.1.tar.gz
 python configure.py -a
 make
 sudo make install

QScintilla 2 python bindings

you hav to cd into the Python subdirectory of the QScintilla 2 source directory (see above):

 cd QScintilla-1.73-gpl-2.1/Python

now you can build the python bindings:

 python configure.py -n /usr/cpp_include
 make
 sudo make install

Eric 4

get eric 4 here: http://dl.sourceforge.net/sourceforge/eric-ide/eric4-4.0.2.tar.gz


 tar xvzf eric4-4.0.2.tar.gz
 cd eric4-4.0.2
 sudo su
 export DYLD_FALLBACK_LIBRARY_PATH=/usr/local/Qt-mac-free-3.3.8/lib
 python install.py

start eric:

 eric4