<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'><br><br><div>> Date: Wed, 2 Mar 2016 18:05:22 +0100<br>> From: eilert-sprachen@t-online.de<br>> To: scribus@lists.scribus.net<br>> Subject: Re: [scribus] Compiling Scribus for Qt5<br>> <br>> <br>> Am 01.03.2016 21:43, schrieb Craig Bradney:<br>> >> On 01 Mar 2016, at 15:30, William Bader <williambader@hotmail.com> wrote:<br>> >><br>> >><br>> >><br>> >>> Date: Tue, 1 Mar 2016 12:40:41 +0100<br>> >>> From: eilert-sprachen@t-online.de<br>> >>> To: scribus@lists.scribus.net<br>> >>> Subject: [scribus] Compiling Scribus for Qt5<br>> >>><br>> >>> This is purely "just for fun", so just tell me if I try something<br>> >>> impossible.<br>> >>><br>> >>> As I was interested in Qt5 libraries for my somewhat older Linux, I<br>> >>> downloaded the sources and browsed the documentation. The first thing I<br>> >>> found was how to compile the source statically into $HOME/qt5.<br>> >>><br>> >>> Having done so, I wonder how to compile and link the Scribus 1.5 source<br>> >>> to this version.<br>> >>><br>> >>> Compiling Qt5,<br>> >>> - "make" ran through flawlessly<br>> >>> - I have not yet issued "make install" because it wasn't mentioned - is<br>> >>> it necessary, anyway?<br>> >>><br>> >>> If I am not completely on the wrong path up to here, what would be the<br>> >>> necessary options to give for linking the Scribus sources to my personal<br>> >>> qt5?<br>> >>><br>> >>> Thanks for your advice!<br>> >>><br>> >>> Regards<br>> >>> Rolf<br>> >> I think that if the qt5 build works, you can get by without installing it, but the Scribus build scripts need to be able to find the qt5 build area. You will probably need to add the qt5 pkconfig directory to PKG_CONFIG_PATH and the qt5 bin directory to PATH. On a Linux distribution that did not already include qt5, I ended up faking the installation with a few sym links, but it didn't work well: ln -s /home/build/qt5/qtbase/include /usr/include/qt5; ln -s /home/build/qt5/qtbase /usr/lib64/qt5; ln -s /home/build/qt5/qtbase/libexec/ /usr/libexec/qt5; ln -s /home/build/qt5/qtbase/bin /usr/bin/qt5; mkdir /usr/share/qt5; ln -s /home/build/qt5/qtbase/translations /usr/share/qt5/translations; ln -s /home/build/qt5/qttools/src/linguist/phrasebooks  /usr/share/qt5/phrasebooks<br>> >> William<br>> ><br>> > All you need is this on your cmake line:<br>> > -DQT_PREFIX=“/path/to/your/qt”<br>> ><br>> > Craig<br>> ><br>> ><br>> <br>> Thank you both for the advice. It doesn't sound so complicated. The only <br>> thing is, I have no experience with the cmake options, i. e. the only <br>> thing I know for sure is ./config, make, make install :)<br>> <br>> I took a look into my $HOME/qt5, it is empty. I guess it means I have to <br>> issue a "make install" to have the readily compiled libraries installed <br>> into this directory, and I hope it won't try to write them into the <br>> /usr/lib etc... (Although it would fail anyway as long as I give no <br>> sudo, right?)<br>> <br>> When this is done, shouldn't I invoke ./config with the prefix you gave <br>> me above, Craig? Or would it be<br>> <br>> make   -DQT_PREFIX=/home/myHome/qt5<br>> <br>> Before I do anything wrong, I wait for your answers...<br>> <br>> Regards<br>> Rolf<br><br></div><div>It has been a long time since I tried building qt5, and as Craig mentioned, I didn't do it the best way. In any case, I ran</div><div><br></div><div>git clone git://gitorious.org/qt/qt5.git qt5</div><div><br></div><div>cd qt5</div><div><br></div><div>perl init-repository -f</div><div><br></div><div>./configure -developer-build -opensource -nomake examples -nomake tests -no-gtkstyle -confirm-license</div><div><br></div><div>make -j4</div><div><br></div><div>That left all of the qt5 binaries under a "qtbase" subdirectory. That directory might work as the QT_PREFIX.  If it doesn't work, then you might need to do a "make distclean" and the rerun configure with the additional option "-prefix $HOME/qt5" as documented in <a href="http://doc.qt.io/qt-5/configure-options.html" target="_blank" style="font-size: 12pt;">http://doc.qt.io/qt-5/configure-options.html</a>  Then you will be able to do a "make install" to put the qt5 files in $HOME/qt5 instead of under /usr or /usr/local.</div><div><br></div><div>You should always do the builds as yourself and not as root. As long as you do the build as yourself, if you left the installation path as /usr, the "make install" won't be able to damage anything because the system files in /usr and /usr/local should be writable only be root.</div><div><br></div><div>Regards, William Bader, Director of Research and Development at SCS, http://www.newspapersystems.com</div><div><br></div><div><br></div>                                       </div></body>
</html>