Centos安装Guake Terminal

安装Guake Terminal

1)安装glib  

./configure

报错:
hecking for PCRE... no
configure: error: Package requirements (libpcre >= 8.13) were not met:

No package 'libpcre' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables PCRE_CFLAGS
and PCRE_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

解决办法:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

    报错:
checking for PCRE... yes
checking for Unicode support in PCRE... no
configure: error: *** The system-supplied PCRE does not support Unicode properties or UTF-8.
   
解决办法:
export LD_LIBRARY_PATH=/usr/local/pcre/lib

make && make installed


2)安装Guake
$ git clone https://github.com/Guake/guake.git
$ cd guake
$ ./autogen.sh && ./configure && make

报错:
checking for glib-gettext >= 2.2.0...
  testing glib-gettextize... not found.
***Error***: You must have glib-gettext >= 2.2.0 installed
  to build guake.  Download the appropriate package for
  from your distribution or get the source tarball at
ftp://ftp.gtk.org/pub/gtk/v2.2/glib-2.2.0.tar.gz

解决方法:
ln -s /usr/local/glib/bin/glib-gettextize /usr/bin/glib-gettextize

报错:
Checking for required M4 macros...
  glib-gettext.m4 not found
***Error***: some autoconf macros required to build guake
  were not found in your aclocal path, or some forbidden
  macros were found.  Perhaps you need to adjust your
  ACLOCAL_FLAGS?

解决方法:
export ACLOCAL_FLAGS="-I /usr/local/glib/share/aclocal"


报错:
Running aclocal-1.11...
configure.ac:79: warning: macro `AM_GCONF_SOURCE_2' not found in library
Running autoconf...
configure.ac:79: error: possibly undefined macro: AM_GCONF_SOURCE_2
  If this token and others are legitimate, please use m4_pattern_allow.
  See the Autoconf documentation.

解决方法:
yum install GConf2 GConf2-devel

报错:
checking for DEPENDENCIES... configure: error: Package requirements (
gtk+-2.0 >= 2.10.0
pygtk-2.0
x11
) were not met:

No package 'gtk+-2.0' found
No package 'pygtk-2.0' found
No package 'x11' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables DEPENDENCIES_CFLAGS
and DEPENDENCIES_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

解决方法:
yum install libgnomeui-devel pygtk2-devel

报错:
checking for the python-vte package... no
configure: error: cannot import Python module "vte".
    Please check if you have python-vte installed. The error was:
    No module named vte

解决方法:
          没解决掉,谁解决掉了,告诉我啊

--------------------------------------------------
实在是搞不定,换成Ubuntu
apt-get install guake
一条命令竟然搞定了!


         


猜你喜欢

转载自mutourenoo.iteye.com/blog/2322728
今日推荐