Instalando o gedit 3.11.2

1

Estou tentando instalar o gedit 3.11.2 de:

link

por algum motivo, ele não funciona no meu Ubuntu 13.10

o arquivo ./configure não foi encontrado.

eu segui as etapas no arquivo README :

  % tar Jxf gedit-3.11.2.tar.xz         # unpack the sources
  % cd gedit-3.11.2             # change to the toplevel directory
  % ./configure                 # run the 'configure' script
  % make                    # build gedit
  [ Become root if necessary ]
  % make install                # install gedit

mas, a configuração não foi encontrada. Estou faltando alguma coisa aqui?

    
por Timmy 17.01.2014 / 20:37

1 resposta

2

Você deve obter o pacote em:

link

Você pode perder algum lib. Você pode obtê-los instalando-os:

sudo add-apt-repository ppa:ricotz/testing
sudo apt-get update

sudo apt-get install intltool
sudo apt-get install itstool
sudo apt-get install libxml2 libglib2.0-dev libxml2-dev libxml2-utils
sudo apt-get install libxml2-dev
sudo apt-get install libgtksourceviewmm-3.0-dev
sudo apt-get install libpeas-1.0-0 libpeas-dev
sudo apt-get install gsettings-desktop-schemas-dev   
sudo apt-get install libgtkspell3-3-dev libgtkspell3-3-0 libgtksourceview-3.0-dev
sudo apt-get install gtk+3.0
sudo apt-get install gir1.2-gtk-3.0

Eu tive um problema ao obter gtksourceview , tive que instalá-lo manualmente:

link

mesmo negócio:

./configure
make 
sudo make install

INSTALANDO o Gedit

Em seguida, quando tudo estiver concluído, você poderá executar na pasta gedit:

./configure
make
sudo make install

NOTA: você pode ter alguns problemas gráficos com a nova biblioteca GTK. Verifique seus drivers (nvidia ou ati, por exemplo) ou brinque com as configurações de "aparência".

    
por Book Of Zeus 18.01.2014 / 00:26