# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils python distutils
DESCRIPTION="Multi-user chat component for jabber implemented in python"
HOMEPAGE="http://onlinegamegroup.com/projects/palaver/"
SRC_URI="http://onlinegamegroup.com/releases/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="net-im/jabber-base"
RDEPEND=">=dev-python/twisted-2.4.0
>=dev-python/twisted-words-0.5
${DEPEND}"
src_unpack() {
unpack ${A} && cd "${S}" || die "unpack failed"
}
src_compile() {
# nothing to be done here?
distutils_src_compile
}
src_install() {
distutils_src_install
# insinto /etc/jabber
# newins config_example.xml ${PN}.xml
# fperms 600 /etc/jabber/${PN}.xml
# fowners jabber:jabber /etc/jabber/${PN}.xml
# dosed \
# "s:[^\<]*:/var/spool/jabber:" \
# /etc/jabber/${PN}.xml
# dosed \
# "s:[^\<]*:/var/run/jabber/${PN}.pid:" \
# /etc/jabber/${PN}.xml
# newinitd "${FILESDIR}/${PN}-0.8-initd" ${PN}
# dosed "s:INSPATH:${inspath}:" /etc/init.d/${PN}
}