blob: 6b889feec0e46b3e611bf20b3260b794b664d114 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-python/py-xmlrpc/py-xmlrpc-0.8.8.2.ebuild,v 1.2 2002/07/11 06:30:24 drobbins 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/*
}
|