diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-05-24 06:20:58 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-05-24 06:20:58 +0000 |
commit | 3a641ed0a33468f98eaa01874301f2915d0e60c5 (patch) | |
tree | 130ebd018f8717ddeea8eda1cd11778f896ecb2f /dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild | |
parent | - Removed author and maintainer headers. (diff) | |
download | historical-3a641ed0a33468f98eaa01874301f2915d0e60c5.tar.gz historical-3a641ed0a33468f98eaa01874301f2915d0e60c5.tar.bz2 historical-3a641ed0a33468f98eaa01874301f2915d0e60c5.zip |
New version update. #2758
Diffstat (limited to 'dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild')
-rw-r--r-- | dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild b/dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild new file mode 100644 index 000000000000..aa2f2db7847e --- /dev/null +++ b/dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Julien Herfurth <jherfurth@arafox.com> +# $Header: /var/cvsroot/gentoo-x86/dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild,v 1.1 2002/05/24 06:20:58 rphillips Exp $ +S=${WORKDIR}/${P} +DESCRIPTION="Fast xml-rpc implementation for Python" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/py-xmlrpc/${P}.tar.gz" +HOMEPAGE="http://sourceforge.net/projects/py-xmlrpc/" +DEPEND="virtual/python" +RDEPEND="$DEPEND" +LICENSE="LGPL" + +src_compile() { + python setup.py build || die +} + +src_install () { + python setup.py install --prefix=${D}/usr || die + dodoc CHANGELOG COPYING INSTALL README + docinto examples + dodoc examples/* + docinto examples/crj + dodoc examples/crj/* +} + |