diff options
author | 2006-03-20 00:51:08 +0000 | |
---|---|---|
committer | 2006-03-20 00:51:08 +0000 | |
commit | 813681e4b3c6e6e21713035b20c1e8a5ce5613b5 (patch) | |
tree | 80174838c1a812c2f2fe4d290f5d7444d95ff455 /dev-python/xmpppy/xmpppy-0.3.ebuild | |
parent | Added ~amd64 keyword. Closes bug #124194. (diff) | |
download | historical-813681e4b3c6e6e21713035b20c1e8a5ce5613b5.tar.gz historical-813681e4b3c6e6e21713035b20c1e8a5ce5613b5.tar.bz2 historical-813681e4b3c6e6e21713035b20c1e8a5ce5613b5.zip |
version bump, solving bug #125678.
Package-Manager: portage-2.1_pre6-r3
Diffstat (limited to 'dev-python/xmpppy/xmpppy-0.3.ebuild')
-rw-r--r-- | dev-python/xmpppy/xmpppy-0.3.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/xmpppy/xmpppy-0.3.ebuild b/dev-python/xmpppy/xmpppy-0.3.ebuild new file mode 100644 index 000000000000..034c7c76a73c --- /dev/null +++ b/dev-python/xmpppy/xmpppy-0.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/xmpppy/xmpppy-0.3.ebuild,v 1.1 2006/03/20 00:51:08 sbriesen Exp $ + +inherit eutils distutils portability + +MY_P="${P/_/-}" + +DESCRIPTION="python library that is targeted to provide easy scripting with Jabber" +HOMEPAGE="http://xmpppy.sourceforge.net/" +SRC_URI="mirror://sourceforge/xmpppy/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="doc" + +S="${WORKDIR}/${MY_P}" + +DEPEND="virtual/python" + +PYTHON_MODNAME="xmpp" + +src_install(){ + distutils_src_install + if use doc; then + cd doc && treecopy . "${D}/usr/share/doc/${PF}/html" + fi +} |