Não é possível executar o mirall porque NÃO foi possível encontrar o Qt5Keychain (ausente: QTKEYCHAIN_LIBRARY)

0

Eu estou tentando compilar Mirall no meu Ubuntu 14.04.1 LTS.

Aqui está o comando que estou usando:

cmake -DCMAKE_BUILD_TYPE="Debug" ../mirall       -DCSYNC_BUILD_PATH=/home/jnbdz/Projects/ownCloudDesktop/ocsync-build       -DCSYNC_INCLUDE_PATH=/home/jnbdz/Projects/ownCloudDesktop/ocsync/src

Aqui está o resultado:

  -- The C compiler identification is GNU 4.8.2

  -- The CXX compiler identification is GNU 4.8.2

  -- Check for working C compiler: /usr/bin/cc

  -- Check for working C compiler: /usr/bin/cc -- works

  -- Detecting C compiler ABI info

  -- Detecting C compiler ABI info - done

  -- Check for working CXX compiler: /usr/bin/c++

  -- Check for working CXX compiler: /usr/bin/c++ -- works

  -- Detecting CXX compiler ABI info

  -- Detecting CXX compiler ABI info - done

  -- Found Qt5 core, checking for further dependencies...

  -- Using Qt 5!

  -- Found PkgConfig: /usr/bin/pkg-config (found version "0.26") 

  -- checking for module 'neon'

  --   found neon, version 0.30.0

  -- Found Neon: /usr/lib/libneon.so  

  -- neon-config executable: /usr/bin/neon-config

  -- libneon has not been compiled with LFS support, rely on OS

  CMake Error at /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:108 (message):

NÃO foi possível encontrar o Qt5Keychain (ausente: QTKEYCHAIN_LIBRARY)

  Call Stack (most recent call first):

/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:315       (_FPHSA_FAILURE_MESSAGE)

  cmake/modules/FindQt5Keychain.cmake:30 (find_package_handle_standard_args)

  CMakeLists.txt:106 (find_package)



  -- Configuring incomplete, errors occurred!

  See also "/home/jnbdz/Projects/ownCloudDesktop/mirall-build/CMakeFiles/CMakeOutput.log".

Então eu tentei instalar manualmente o QT5Keychain. Baixando desta página: link .

Estes dois pacotes: libqt5keychain0_0.3.0-2_i386.deb e qt5keychain-dev_0.3.0-2_i386.deb.

Então, novamente, ele me envia o mesmo erro.

Eu também tentei pesquisar:

sudo find / -name qtkeychain.dylib
sudo find / -name qt5keychain.dylib

Mas não encontrou nada.

Eu também tentei isso:

sudo apt-get install qt5keychain-dev

Resultado:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
qt5keychain-dev:i386 is already the newest version.
The following packages were automatically installed and are no longer required:
  libgcrypt11-dev libgnutls-dev libgnutlsxx27 libgpg-error-dev libp11-kit-dev
  libtasn1-6-dev
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 119 not upgraded.

Então, parece que tudo é instalado ... Então, não tenho ideia de por que ainda está reclamando.

    
por jnbdz 21.09.2014 / 01:12

1 resposta

1

Você deve antes de tudo fazer o download dos pacotes libqt5keychain e qtkeychain-dev para retomar a compilação mirall.

Use o comando wget para cada um desses URLs (depende da arquitetura do seu sistema):

wget http://hr.archive.ubuntu.com/ubuntu/pool/universe/q/qtkeychain/libqt5keychain0_0.3.0-2_amd64.deb  
wget http://hr.archive.ubuntu.com/ubuntu/pool/universe/q/qtkeychain/qtkeychain-dev_0.1.0-1ubuntu1_amd64.deb

Em seguida, instale com:

dpkg -i qt5keychain-dev_0.3.0-2_amd64.deb libqt5keychain0_0.3.0-2_amd64.deb
    
por Mohamed 25.09.2014 / 18:53