"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "scribus-1.3.3.12/README.MacOSX" of archive scribus-1.3.3.12.tar.gz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    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