Existe um pacote 11.04 para gtk + -3.2.0?

1

gtk + -3.2.0 está fora desde 26-Set-2011. Quando haverá um pacote disponível para o Ubuntu natty? Eu tentei construir sozinho, mas é muito difícil, tudo que eu vejo são erros. As páginas de referências não ajudam muito a avançar muito.

Eu instalei o seguinte:

sudo apt-get install libffi-dev zlib1g-dev fam libdbus-1-dev libdbus-glib-1-dev gobject-introspection libxext-dev libxrender1-dbg colordiff libcairo2-dev libtiff4-dev libpng12-dev libxft-dev libxi-devel

Eu tenho o dir / home / me / gtk lá eu tenho as pastas:

atk-2.1.5
gdk-pixbuf-2.24.1
glib-2.30.1
gtk+-3.2.3
pango-1.29.1

Então:

cd /home/me/gtk/glib-2.30.1
./configure && make
rm -rf /home/me/gtk/include/glib.h  /home/me/gtk/include/gmodule.h  (glib INSTALL instructions)
make install

repita para as outras pastas, exceto sem o rm, na seguinte ordem:

  1. atk-2.1.5
  2. gdk-pixbuf-2.24.1
  3. pango-1.29.1
  4. gtk + -3.2.3

Antes de executar ./configure para gtk + -3.2.3 eu faço:

CPPFLAGS="-I/home/me/gtk/include"
LDFLAGS="-L/home/me/gtk/lib"
PKG_CONFIG_PATH="/home/me/gtk/lib/pkgconfig"
export CPPFLAGS LDFLAGS PKG_CONFIG_PATH
LD_LIBRARY_PATH="/home/me/gtk/lib"
PATH="/home/me/gtk/bin:$PATH"
export LD_LIBRARY_PATH PATH
export PKG_CONFIG_PATH="/home/me/gtk/lib/pkgconfig:$PKG_CONFIG_PATH"

Eu recebo esses erros quando executo o make no gtk + -3.2.3:

gdkwindow-x11.c: In function '_gdk_x11_moveresize_handle_event':
gdkwindow-x11.c:4301:9: error: 'XIEvent' undeclared (first use in this function)
gdkwindow-x11.c:4301:9: note: each undeclared identifier is reported only once for each function it appears in
gdkwindow-x11.c:4301:18: error: 'ev' undeclared (first use in this function)
gdkwindow-x11.c:4301:33: error: expected expression before ')' token
gdkwindow-x11.c:4302:9: error: 'XIDeviceEvent' undeclared (first use in this function)
gdkwindow-x11.c:4302:24: error: 'xev' undeclared (first use in this function)
gdkwindow-x11.c:4302:46: error: expected expression before ')' token
gdkwindow-x11.c:4306:16: error: 'XI_Motion' undeclared (first use in this function)
gdkwindow-x11.c:4308:13: warning: implicit declaration of function '_gdk_x11_device_xi2_translate_state'
gdkwindow-x11.c:4313:16: error: 'XI_ButtonRelease' undeclared (first use in this function)
make[4]: *** [gdkwindow-x11.lo] Error 1
make[4]: Leaving directory '/home/me/gtk/gtk+-3.2.3/gdk/x11'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory '/home/me/gtk/gtk+-3.2.3/gdk'
make[2]: *** [all] Error 2
make[2]: Leaving directory '/home/me/gtk/gtk+-3.2.3/gdk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/me/gtk/gtk+-3.2.3'
make: *** [all] Error 2
    
por will 02.01.2012 / 23:59

1 resposta

2

Não haverá. O 11.04 é uma versão estável, por isso não obtém novas versões upstream, exceto alguns casos especiais como o firefox. A menos que alguém o adicione ao repositório natty-backports, mas backports não vê muita atividade, especialmente em versões não LTS.

    
por psusi 03.01.2012 / 02:39