Chinaunix首页 | 论坛 | 博客
  • 博客访问: 398501
  • 博文数量: 59
  • 博客积分: 5195
  • 博客等级: 大校
  • 技术积分: 645
  • 用 户 组: 普通用户
  • 注册时间: 2006-12-01 14:38
文章分类

全部博文(59)

文章存档

2017年(1)

2011年(10)

2010年(1)

2009年(9)

2008年(1)

2007年(35)

2006年(2)

我的朋友

分类: LINUX

2007-06-28 13:03:02

有一年多没装e17了,今天突然心血来潮把它装上了,想看看它是否能给我一些新的惊喜。以下是我的安装过程:
我是把e17下到本机上装的,要下自然是要下最新的,可以到用cvs下载或到用本地下载。

一、cvs
1、evas
cd evas
./autogen.sh --enable-image-loader-jpeg --enable-image-loader-png && make && make install && echo ok
此处如果不加--enable-image-loader-jpeg --enable-image-loader-png这两个参数,在编译e的时候会出现如下错误:
/usr/local/bin/edje_cc: Error. unable to load image for image "brushed.png" part entry to ../../data/init/default.edj. Missing PNG or JPEG loader modules for Evas or file does not exist, or is not readable.
2、ecore
cd ecore
./autogen.sh --enable-ecore-evas-x11-16 && make && make install && echo ok
此处如果不加--enable-ecore-evas-x11-16参数,在编译过程中会出现如下错误:
No package 'ecore-evas' found
3、
在编译过程中可能会出现如下错误:
checking for ECORE... configure: error: Package requirements (ecore >= 0.9.9 ecore-file >= 0.9.9) were not met:
No package 'ecore' found
No package 'ecore-file' found
...
解决方法:
ln -s /usr/local/lib/pkgconfig/* /usr/lib/pkgconfig

在bashrc文件中输入:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig

二、本地下载(2007-07-10)
安装顺序:eet evas ecore embryo edje efreet enlightenment
1、ecore
cd ecore
./autogen.sh --enable-ecore-evas-x11-16 && make && make install && echo ok
此处如果不加--enable-ecore-evas-x11-16参数,在编译过程中会出现如下错误:
No package 'ecore-evas' found
2、
如果遇到类似于下面的错误请参考cvs中的第3条:
checking for ECORE... configure: error: Package requirements (ecore >= 0.9.9 ecore-file >= 0.9.9) were not met:
No package 'ecore' found
No package 'ecore-file' found
...
3、enlightenment
会出现一个缺少libedje.so.0库的问题,在bashrc文件中输入:
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
4、在开机进入e17时出现一个错误:
Enlightenment found Evas can't load EET files. Check Evas has EET loader support.
解决方法:
1>
cd evas
./configure --enable-image-loader-eet && make && make install && echo ok
2>重新编译enlightenment

三、登录管理器
安装顺序:esmart entrance
1、打开/etc/conf.d/xdm文件,把DISPLAYMANAGER="xdm"改为DISPLAYMANAGER="entrance"
2、/etc/init.d/xdm restart
阅读(2364) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~