Talk:Main Page: Difference between revisions

From Scribus Wiki
Jump to navigation Jump to search
(Compiling LPROF-1.09 on Debian Sarge Linux 2.6.8-1-386)
 
(Moved Harley's instructions to a new howto)
Line 11: Line 11:


TomK32, do you know more on this issue: http://bugs.scribus.net/view.php?id=1665 ? --[[User:Mhanski|Mhanski]] 09:21, 14 Feb 2005 (UTC)
TomK32, do you know more on this issue: http://bugs.scribus.net/view.php?id=1665 ? --[[User:Mhanski|Mhanski]] 09:21, 14 Feb 2005 (UTC)
== Compiling LPROF-1.09 on Debian Sarge Linux 2.6.8-1-386 ==
I am putting together an lprof-1.09.deb binary package that can be installed on Debian Linux systems. In the meantime, you can still compile the lprof binaries under a recent Debian Linux system doing the following;
As ROOT or using fakeroot as the case may be;
Assumptions; you've done an;
apt-get install qt3-apps-dev qt3-assistant qt3-designer qt3-dev-tools qt3-qtconfig qt3-examples qt3-doc
to install all the qt3 software you'll need later anyways.
In the meantime, here's how I got color management working with LPROF version 1.09 under Linux;
#mkdir lprof
#cd lprof
#wget http://gkall.hobby.nl/sane-lprof/lprof-1.09.tar.gz
#tar zvxf lprof-1.09.tar.gz
#cd lprof-1.09/
#wget http://gkall.hobby.nl/sane-lprof/lprof-1.09_mrr_patch4
#patch -p 0 < lprof-1.09_mrr_patch4
#cp include/lcmsprf.h qt/
#cd qt
#cd qtMeasurementTool/
#pico -w makefile
Inside the makefile above the commented out line
# Assure these are defined
put;
QTDIR=/usr
Then change
-I$(QTDIR)/include/qt
TO
-I$(QTDIR)/include/qt3
in the "#some settings" section near the end of the INCLUDES line
and change -lqt to -lqt-mt in the POSTLIB line and then
Save the edited makefile
cd into the subdirectories qtMonitorProfiler/    qtScannerProfiler/  qtProfileChecker/
and make the exact same changes to each of the makefiles within those directories and then;
#cd ..
#cd ..
to the lprof-1.09 root directory then do a
#make all
After compilation you'll find the binaries are in the lprof-1.09 root directory.
The lprof binaries all worked after I followed the above method. Obviously, YMMV.

Revision as of 09:41, 5 May 2005


18-Mar-2005 For anyone needing a Sun Solaris SPARC build of Scribus 1.2.1 then check out: http://blastwave.informatik.uni-erlangen.de/csw/users/kenmays/scribus-1.2.1-SunOS5.8-sparc-CSW.pkg.gz ~Ken


I`m done with the stylesheet. See http://tomk32.homelinux.org/wiki/ dl the necessary files at http://tomk32.homelinux.org/scribus.tar.bz2 --TomK32 06:57, 10 Feb 2005 (UTC)

Could you do one for the latest stable MediaWiki. The one you did seems to be for the beta release and doesn't fit the current version run here. Or if you know how to make it work please contact MrB at #scribus. --Tsoots 23:24, 12 Feb 2005 (UTC)
actually it's only the css-file, images and a few lines in the template that changed. The betas are normally very stable and you should prefer them due to more features and bugfixes. Wikipedia itself is running the 1.4 beta. --TomK32 08:09, 14 Feb 2005 (UTC)

TomK32, do you know more on this issue: http://bugs.scribus.net/view.php?id=1665 ? --Mhanski 09:21, 14 Feb 2005 (UTC)