mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
USE_LIBPATH option is now finally fixed.
This commit is contained in:
parent
67907b5cea
commit
ec973d960a
23
BUILDING
23
BUILDING
|
@ -3,7 +3,7 @@ General
|
||||||
|
|
||||||
If you can, you should use precompiled packages for your distribution.
|
If you can, you should use precompiled packages for your distribution.
|
||||||
But if you cannot use them, or they are not available, please read
|
But if you cannot use them, or they are not available, please read
|
||||||
this informations before compiling.
|
this information before compiling.
|
||||||
After your binary is successfuly compiled, you need to copy bin/ folder
|
After your binary is successfuly compiled, you need to copy bin/ folder
|
||||||
from git to specific directory by your system you compiled for.
|
from git to specific directory by your system you compiled for.
|
||||||
On Linux, you can easily do it by running make install.
|
On Linux, you can easily do it by running make install.
|
||||||
|
@ -36,12 +36,26 @@ Linux / Unix
|
||||||
|
|
||||||
There is no extra dependency, you only need Qt tools.
|
There is no extra dependency, you only need Qt tools.
|
||||||
|
|
||||||
|
MAC OS X
|
||||||
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
There is no extra dependency, you only need Qt tools and XCode.
|
||||||
|
After successful compilation, you need to run macdeploy.sh script to correctly
|
||||||
|
build the application bundle. You will do it with following command:
|
||||||
|
|
||||||
|
$ ./scripts/macdeploy.sh <path-to-macdeployqt>
|
||||||
|
|
||||||
|
You need to specifiy path to macdeployqt (usually in QTDIR/bin/macdeployqt) only
|
||||||
|
if it is not in PATH.
|
||||||
|
|
||||||
OS/2
|
OS/2
|
||||||
----------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
I cannot provide support for QupZilla on OS/2 as I don't have access to
|
I cannot provide support for QupZilla on OS/2 as I don't have access to
|
||||||
machine with OS/2, but it is possible to get QupZilla working there.
|
machine with OS/2, but it is possible to get QupZilla working there.
|
||||||
|
|
||||||
|
Builds are provided by netlabs.org (http://svn.netlabs.org/qtapps/wiki/QT4%20Networking)
|
||||||
|
|
||||||
FreeBSD
|
FreeBSD
|
||||||
----------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -122,15 +136,15 @@ Available Defines
|
||||||
example:
|
example:
|
||||||
$ export KDE="true"
|
$ export KDE="true"
|
||||||
|
|
||||||
USE_LIBPATH By default, /usr/lib/ is used for libqupzilla and /usr/lib/qupzilla
|
USE_LIBPATH By default, /usr/lib/ is used for libQupZilla and /usr/lib/qupzilla
|
||||||
for plugins.
|
for plugins.
|
||||||
You can change it by setting this define.
|
You can change it by setting this define. Ending slash is needed!
|
||||||
|
|
||||||
example:
|
example:
|
||||||
$ export USE_LIBPATH="/usr/lib64/"
|
$ export USE_LIBPATH="/usr/lib64/"
|
||||||
|
|
||||||
NO_SYSTEM_DATAPATH By default, QupZilla is using /usr/share/qupzilla/ path
|
NO_SYSTEM_DATAPATH By default, QupZilla is using /usr/share/qupzilla/ path
|
||||||
for storing themes, translations and plugins.
|
for storing themes and translations.
|
||||||
By setting this define, QupZilla will use path of execution.
|
By setting this define, QupZilla will use path of execution.
|
||||||
(disabled by default)
|
(disabled by default)
|
||||||
|
|
||||||
|
@ -142,6 +156,7 @@ Available Defines
|
||||||
QupZilla binary will then be moved to PREFIX/bin/, use
|
QupZilla binary will then be moved to PREFIX/bin/, use
|
||||||
PREFIX/share/qupzilla/ as datadir, PREFIX/share/applications for
|
PREFIX/share/qupzilla/ as datadir, PREFIX/share/applications for
|
||||||
desktop launcher and PREFIX/share/pixmaps for icon.
|
desktop launcher and PREFIX/share/pixmaps for icon.
|
||||||
|
Ending slash is needed!
|
||||||
|
|
||||||
example:
|
example:
|
||||||
$ export QUPZILLA_PREFIX="/usr/"
|
$ export QUPZILLA_PREFIX="/usr/"
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
QupZilla Web Browser
|
QupZilla Web Browser
|
||||||
----------------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
Homepage: http://www.qupzilla.com
|
Homepage: [http://www.qupzilla.com](http://www.qupzilla.com)
|
||||||
Blog: http://blog.qupzilla.com/
|
Blog: [http://blog.qupzilla.com](http://blog.qupzilla.com)
|
||||||
IRC: `#qupzilla` at `irc.freenode.net`
|
IRC: `#qupzilla` at `irc.freenode.net`
|
||||||
|
|
||||||
About QupZilla
|
About QupZilla
|
||||||
|
|
6
TODO
6
TODO
|
@ -11,3 +11,9 @@ The list is not sorted by priority.
|
||||||
* New LocationBar completer
|
* New LocationBar completer
|
||||||
* (KDE) Nepomuk integration
|
* (KDE) Nepomuk integration
|
||||||
* Page previews as tooltip on tabs (like Opera)
|
* Page previews as tooltip on tabs (like Opera)
|
||||||
|
* Support for remote Web inspector
|
||||||
|
* option to save RSS feeds in external reader
|
||||||
|
* Session manager
|
||||||
|
* Editable toolbar
|
||||||
|
* NoScript plugin
|
||||||
|
* GreaseMonkey plugin (userscripts)
|
||||||
|
|
|
@ -1,14 +1,20 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
COMMAND=$1
|
#
|
||||||
|
# Usage: ./macdeploy.sh [<full-path-to-macdeployqt>]
|
||||||
|
#
|
||||||
|
# macdeployqt is usually located in QTDIR/bin/macdeployqt
|
||||||
|
# If path to macdeployqt is not specified, using it from PATH
|
||||||
|
|
||||||
|
COMMAND="macdeployqt"
|
||||||
LIBRARY_NAME="libQupZilla.1.dylib"
|
LIBRARY_NAME="libQupZilla.1.dylib"
|
||||||
|
|
||||||
if [ $COMMAND = "" ]; then
|
if [ -n "$1" ]; then
|
||||||
$COMMAND="macdeployqt"
|
COMMAND=$1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# cd to directory with bundle
|
# cd to directory with bundle
|
||||||
test -d build || cd ..
|
test -d bin || cd ..
|
||||||
cd build
|
cd bin
|
||||||
|
|
||||||
# copy libQupZilla into bundle
|
# copy libQupZilla into bundle
|
||||||
cp $LIBRARY_NAME QupZilla.app/Contents/MacOS/
|
cp $LIBRARY_NAME QupZilla.app/Contents/MacOS/
|
||||||
|
|
|
@ -161,7 +161,7 @@ void Plugins::loadAvailablePlugins()
|
||||||
dirs << mApp->DATADIR + "plugins/"
|
dirs << mApp->DATADIR + "plugins/"
|
||||||
#ifdef Q_WS_X11
|
#ifdef Q_WS_X11
|
||||||
#ifdef USE_LIBPATH
|
#ifdef USE_LIBPATH
|
||||||
<< USE_LIBPATH + "qupzilla/"
|
<< USE_LIBPATH "qupzilla/"
|
||||||
#else
|
#else
|
||||||
<< "/usr/lib/qupzilla/"
|
<< "/usr/lib/qupzilla/"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
ICON 1 "..\lib\data\icons\exeicons\qupzilla_os2.ico"
|
ICON 1 "../lib/data/icons/exeicons/qupzilla_os2.ico"
|
||||||
ICON 2 "..\lib\data\icons\exeicons\page_os2.ico"
|
ICON 2 "../lib/data/icons/exeicons/page_os2.ico"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user