home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Freeware 31 / FreelogHS31.iso / Texte / scribus / scribus-1.3.3.9-win32-install.exe / README.MacOSX < prev    next >
Text File  |  2006-06-02  |  1KB  |  39 lines

  1. Some preliminary notes:
  2.  
  3. (This will all be obsolete once CMake is used.)
  4.  
  5.  
  6. The file configure.MacOSX contains the call to ./configure that *I* use to create a MacOSX application bundle for Scribus. Recently another user has used
  7. this instructions to compile Scribus on an Intel-Mac.
  8.  
  9. If you use fink, install libart, libjpeg, libtiff, libpng, lcms and freetype219.
  10. Make sure that freetype-config and pkg-config pick up the right libraries 
  11. (freetype under /usrX11R6 is unusable).
  12. Don't forget to set QTDIR and include $QTDIR/bin in your PATH.
  13.  
  14. To compile Scribus:
  15.  
  16.   source configure.MacOSX
  17.   make
  18.   make_install
  19.   ./install_MacOSX.sh 
  20.  
  21.  
  22. The last command does automatically what is explained in the following section:
  23.  
  24. Scribus.app contains some files for the OSX application bundle infrastructure:
  25.  
  26. Contents/Info.plist    application properties
  27. Contents/Resources    application icons
  28. Contents/MacOS        application binary
  29.  
  30. Currently you have to copy the Info.plist and the icon files to the install location yourself
  31. and create a sysmlink in MacOS:
  32.  
  33. bash$ cd Contents/MacOS
  34. bash$ ln -s ../bin/scribus Scribus
  35.  
  36.  
  37.  
  38.  
  39.