# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-voip/telepathy-butterfly/telepathy-butterfly-0.3.1.ebuild,v 1.3 2008/05/29 17:48:54 hawking Exp $ NEED_PYTHON="2.4" inherit python multilib DESCRIPTION="An MSN connection manager for Telepathy" HOMEPAGE="http://telepathy.freedesktop.org/releases/telepathy-butterfly/" SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-python/telepathy-python >=dev-python/pymsn-0.3.1" DOCS="AUTHORS NEWS" src_compile() { ./waf --prefix=/usr \ configure || die "./waf configure failed" ./waf ${MAKEOPTS} build || die "./waf configure failed" } src_install() { ./waf \ --destdir="${D}" \ install || die "./waf install failed" rm -f $(find "${D}" -name *.py[co]) dodoc ${DOCS} } pkg_postinst() { python_version python_mod_optimize \ /usr/$(get_libdir)/python${PYVER}/site-packages/butterfly } pkg_postrm() { python_mod_cleanup }