kde4-config não mostra saída

0

Instalei o kde4 seguindo as instruções aqui ( link )

Mas eu não recebo saída quando eu digito o comando kde4-config

Eu estou tentando começar com o Open Source, então decidi começar resolvendo bugs em bugs.kde.org
O particular que eu pensei em resolver precisa de mim para obter minha cópia do okular pronto. Eu estou seguindo as instruções no final aqui ( link ), então eu preciso fazer o kde4 rodar

eu executei

sudo apt-get install kubuntu-desktop

Isto é o que recebo quando tento obter o caminho de instalação

$ kde4-config  
$  

Nada.

    
por Abhyudaya Srinet 23.09.2014 / 15:57

1 resposta

0

Versão do KDE para o Ubuntu 14.04LTS

Disponível:

Os desktops do KDE / Kubuntu são metapacapas: link

Existem várias maneiras de instalar a área de trabalho do KDE:

  • kde-plasma-desktop
  • kde-standard
  • kde-completo
  • kubuntu-desktop
  • kubuntu-full
  • etc ...

Comunidade Ubuntu - Instalando o software: link

Para usar o kde4-config, adicione uma opção:

kde4-config --help

:~$ kde4-config --help
Usage: kde4-config [Qt-options] [KDE-options] [options] 

A little program to output installation paths

Generic options:
  --help                    Show help about options
  --help-qt                 Show Qt specific options
  --help-kde                Show KDE specific options
  --help-all                Show all options
  --author                  Show author information
  -v, --version             Show version information
  --license                 Show license information
  --                        End of options

Options:
  --expandvars              Left for legacy support
  --prefix                  Compiled in prefix for KDE libraries
  --exec-prefix             Compiled in exec_prefix for KDE libraries
  --libsuffix               Compiled in library path suffix
  --localprefix             Prefix in $HOME used to write files
  --kde-version             Compiled in version string for KDE libraries
  --types                   Available KDE resource types
  --path type               Search path for resource type
  --locate filename         Find filename inside the resource type given to --path
  --userpath type           User path: desktop|autostart|document
  --install type            Prefix to install resource files to
  --qt-prefix               Installation prefix for Qt
  --qt-binaries             Location of installed Qt binaries
  --qt-libraries            Location of installed Qt libraries
  --qt-plugins              Location of installed Qt plugins

Desenvolvimento / CMake / Addons para o KDE: link

The locations of install directories

They are all interpreted relative to CMAKE_INSTALL_PREFIX

BIN_INSTALL_DIR - the directory where executables be installed (default is prefix/bin)
SBIN_INSTALL_DIR - the directory where system executables will be installed (default is prefix/sbin)
LIB_INSTALL_DIR - the directory where libraries will be installed (default is prefix/lib)

kde4-config com o cmake

O kde4-config pode ser usado com o cmake.

Um exemplo genérico:

mkdir -p builddir
cd builddir && cmake .. -DCMAKE_INSTALL_PREFIX='kde4-config --prefix'
make
sudo make install

Com o Ubuntu, o:

-DCMAKE_INSTALL_PREFIX='kde4-config --prefix'

é o mesmo que:

-DCMAKE_INSTALL_PREFIX=/usr

Mais links

  • Diretórios de instalação do KDE: link
  • Configurar os caminhos do KDE: link
por user26687 23.09.2014 / 16:54