# Copyright 2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 # Author: Jon Nelson # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.1 2002/08/02 00:46:54 jnelson Exp $ # The distutils eclass is designed to allow easier installation of # distutils-based python modules, and their incorporation into # the Gentoo Linux system. ECLASS=distutils INHERITED="$INHERITED $ECLASS" EXPORT_FUNCTIONS src_compile src_install newdepend ">=dev-lang/python" distutils_src_compile() { python setup.py build || die "compilation failed" } distutils_src_install() { python setup.py install --root=${D} || die dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS dodoc CONTRIBUTORS LICENSE COPYING* dodoc Change* MANIFEST* README* ${mydoc} }