|
|
主页 http://www.emesene.org
http://www.linuxsir.cn/bbs/showt ... p;highlight=emesene
lpw在redhat版已经推荐过了
Post by "lpw"
Emesene
这是我要介绍的 MSN 客户端。Emesene 是一个用 Python+GTK 写的 MSN 客户端。使用 MSN 的通讯协定 MSNP13 (目前最新版本是 MSNP15)。目前这个项目刚刚起步,不过它已经支持大部分常用功能了。邮件通知,即时个人消息,离线消息,好友别名等。最重要的是它的好友别名和别的客户端不同,别的客户端是把好友别名存在本机裹,到别的计算机登入就没了,但 Emesene 使用 MSNP 协定把好友别名存在 MSN 的服务器裹。Emesene 的介面也是比较整洁,和 Pidgin相似。它也支持即时音乐消息,但目前好像还不支持文件传送,这是 Emesene 目前的缺点。
在http://forums.gentoo.org/viewtopic-t-551917.html有ebuild我转贴个过来
我这几天用了一下,觉得做的还是很不错的.
优点:
漂亮
发言方式可以按多种样式显示
支持多种插件.
缺点:
不支持文件传输
偶尔会连接断掉,掉线(似乎有所好转)
在聊天窗口用fcitx输入的时候回车键不是输入fcitx上面的英文,而是直接发送消息
基于pygtk,内存消耗稍大一些
net-im/emesene/emesene-9999.ebuild
- # Copyright 1999-2006 Gentoo Foundation
- # Distributed under the terms of the GNU General Public License v2
- ESVN_REPO_URI="https://emesene.svn.sourceforge.net/svnroot/emesene/trunk/emesene"
- ESVN_PROJECT="emesene"
- inherit subversion eutils
- DESCRIPTION="Platform independent MSN Messenger client written in Python+GTK"
- HOMEPAGE="http://www.emesene.org"
- SLOT="0"
- LICENSE="GPL-2"
- KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
- DEPEND="
- >=dev-lang/python-2.4.3
- >=x11-libs/gtk+-2.8.20
- >=dev-python/pygtk-2.8.6
- "
- RDEPEND="${DEPEND}"
- pkg_setup() {
- ewarn "This is a LIVE SVN ebuild."
- ewarn "That means there are NO promises it will work."
- }
- src_install() {
- cd ${S}
- dodir /usr/share/emesene
- insinto /usr/share/emesene
- doins -r ./*
- dodir /usr/bin
- exeinto /usr/bin
- echo -e '#!/bin/sh \n python /usr/share/emesene/Controller.py'> emesene
- doexe emesene
- newicon ${S}/themes/default/icon96.png ${PN}.png
- make_desktop_entry emesene "EmeSeNe" ${PN}.png
- }
- pkg_postinst() {
- ewarn "Remember, this stuff is SVN only code so dont cry when"
- ewarn "I break you :)."
- ewarn "If you want to report bugs, go to our forum at http://emesene.org/forums"
- }
复制代码 |
|