2010-08-15 21:51:09 +02:00
|
|
|
# Copyright 1999-2009 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/pymsn-t-0.11.3-r2.ebuild,v 1.3 2009/03/09 14:12:04 armin76 Exp $
|
|
|
|
|
|
|
|
PYTHON_DEPEND="2"
|
|
|
|
|
|
|
|
inherit eutils multilib python
|
|
|
|
|
|
|
|
MY_PN="pymsnt"
|
|
|
|
S=${WORKDIR}/${MY_PN}-${PV}
|
|
|
|
DESCRIPTION="Python based jabber transport for MSN"
|
|
|
|
HOMEPAGE="http://msn-transport.jabberstudio.org/"
|
|
|
|
SRC_URI="http://msn-transport.jabberstudio.org/tarballs/${MY_PN}-${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND="net-im/jabber-base"
|
|
|
|
RDEPEND="${DEPEND}
|
|
|
|
>=dev-python/twisted-9.0.0
|
|
|
|
>=dev-python/twisted-words-9.0.0
|
|
|
|
>=dev-python/twisted-web-9.0.0
|
|
|
|
>=dev-python/imaging-1.1"
|
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
unpack ${A} && cd "${S}" || die "unpack failed"
|
|
|
|
epatch "${FILESDIR}/${P}-protocol-version.patch"
|
|
|
|
epatch "${FILESDIR}/${P}-unexpected-xfr.patch"
|
|
|
|
epatch "${FILESDIR}/${P}-remove-pid.patch"
|
|
|
|
epatch "${FILESDIR}/${P}-delete-reactor.patch"
|
|
|
|
epatch "${FILESDIR}/${P}-hashlib.patch"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
local inspath
|
|
|
|
|
2010-08-15 21:59:03 +02:00
|
|
|
inspath=$(python_get_sitedir)/${PN}
|
2010-08-15 21:51:09 +02:00
|
|
|
insinto ${inspath}
|
|
|
|
doins -r data src
|
|
|
|
newins PyMSNt.py ${PN}.py
|
|
|
|
|
|
|
|
insinto /etc/jabber
|
|
|
|
newins config-example.xml ${PN}.xml
|
|
|
|
fperms 600 /etc/jabber/${PN}.xml
|
|
|
|
fowners jabber:jabber /etc/jabber/${PN}.xml
|
|
|
|
dosed \
|
|
|
|
"s:<!-- <spooldir>[^\<]*</spooldir> -->:<spooldir>/var/spool/jabber</spooldir>:" \
|
|
|
|
/etc/jabber/${PN}.xml
|
|
|
|
dosed \
|
|
|
|
"s:<pid>[^\<]*</pid>:<pid>/var/run/jabber/${PN}.pid</pid>:" \
|
|
|
|
/etc/jabber/${PN}.xml
|
|
|
|
dosed \
|
|
|
|
"s:<host>[^\<]*</host>:<host>example.org</host>:" \
|
|
|
|
/etc/jabber/${PN}.xml
|
|
|
|
dosed \
|
|
|
|
"s:<jid>msn</jid>:<jid>msn.example.org</jid>:" \
|
|
|
|
/etc/jabber/${PN}.xml
|
|
|
|
|
|
|
|
newinitd "${FILESDIR}/${P}-initd" ${PN}
|
|
|
|
dosed "s:INSPATH:${inspath}:" /etc/init.d/${PN}
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
2010-08-15 22:06:45 +02:00
|
|
|
python_mod_optimize $(python_get_sitedir)/${PN}
|
2010-08-15 21:51:09 +02:00
|
|
|
|
|
|
|
elog "A sample configuration file has been installed in /etc/jabber/${PN}.xml."
|
|
|
|
elog "Please edit it and the configuration of your Jabber server to match."
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
2010-08-15 22:06:45 +02:00
|
|
|
python_mod_cleanup $(python_get_sitedir)/${PN}
|
2010-08-15 21:51:09 +02:00
|
|
|
}
|