Release PND management suite


Yes it is, and as such it should be just as wrong to use with PNDManager as 4.7 is. So I'm thinking why it's not trying to use it on SZ and is on slackware.
 
:/


Maybe i can try to compile it myself if the sources are available somewhere ?
 
On it.


Thanks.


--EDIT:


I don't understand the



Code:
git submodule init

	git submodule update

part.


Where should i launch that ?


Btw, the link to the wiki leads to a 404.
 
Last edited by a moderator:
git submodule commands are run in the repository root. This fetches any source dependencies. After that you can compile panorama like any cmake based project. Give cmake -DPANDORA=true to compile a monolithic (one directory) version.


The build instructions in the readme are a bit outdated :p
 
Code:
git clone git://github.com/bzar/panorama.git

cd panorama

git checkout consolidation-ui

git submodule init

git submodule update





Code:
mkdir build

cd build

cmake -DPANDORA=true ..

make
 
Cool !


Will try that, thanks.


So what is the bzar-panorama-6156b8a.zip archive i downloaded ?


--EDIT:



Code:
bash-4.1$ git submodule update

Cloning into deps/jansson/src...

remote: Counting objects: 3540, done.

remote: Compressing objects: 100% (1051/1051), done.

remote: Total 3540 (delta 2167), reused 3482 (delta 2128)

Receiving objects: 100% (3540/3540), 484.15 KiB | 403 KiB/s, done.

Resolving deltas: 100% (2167/2167), done.

Submodule path 'deps/jansson/src': checked out '49fc708d4c5aeebad570f59a588f7520a4c62f78'

Cloning into deps/milky/src...

fatal: remote error:

  Repository not found.

Clone of 'git://github.com/Cloudef/milkyhelper.git' into submodule path 'deps/milky/src' failed

bash-4.1$





Also



Code:
....

-- Compiling and packaging for the Pandora

CMake Error at deps/jansson/CMakeLists.txt:27 (FILE):

  file COPY cannot find

  "/home/lswat/panorama/deps/jansson/src/src/jansson_config.h".


CMake Error at deps/pnd/CMakeLists.txt:74 (FILE):

  file COPY cannot find "/home/lswat/panorama/deps/pnd/src/include/pnd_apps.h".


-- Found CURL: /usr/lib/libcurl.so

-- Found OpenSSL: /usr/lib/libssl.so;/usr/lib/libcrypto.so

-- Found EXPAT: /usr/lib/libexpat.so

CMake Error at deps/pndman/CMakeLists.txt:14 (FILE):

  file COPY cannot find

  "/home/lswat/panorama/deps/pndman/src/include/pndman.h".


You have called ADD_LIBRARY for library pndman without any source files. This typically indicates a problem with your CMakeLists.txt file

-- Looking for Q_WS_X11

-- Looking for Q_WS_X11 - found

-- Looking for Q_WS_WIN

-- Looking for Q_WS_WIN - not found.

-- Looking for Q_WS_QWS

-- Looking for Q_WS_QWS - not found.

-- Looking for Q_WS_MAC

-- Looking for Q_WS_MAC - not found.

-- Found Qt-Version 4.8.1 (using /usr/bin/qmake)

You have called ADD_LIBRARY for library qtpndman without any source files. This typically indicates a problem with your CMakeLists.txt file

...
 
Last edited by a moderator:
First error is that you are not building consodilation branch 'git checkout consolidation-ui', instead it's trying to use old libmilky which is moved on git and causes that error.


Second is that the submodule init && submodule update wasn't done.


There might be that even the later branch uses libmilky, but B-ZaR hasn't removed(or updated) the git link yet.
 
The bzar-panorama-6156b8a.zip only contains panorama source, not its static dependencies, like libpndman.


Merging consolidation-ui branch to master will be the next thing I do when I get back to pndmanager in a week or so (after I get my current subproject to a stable state).
 
Any progress here ?


I'd really like to embed pndmanager into my port (with your permission ;^) ).
 
When doing the



Code:
git submodule update


, the milkyhelper.git repository is not found :/.
 
Back
Top