diff options
-rw-r--r-- | dev-python/ldaptor/ldaptor-0.0.6.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/dev-python/ldaptor/ldaptor-0.0.6.ebuild b/dev-python/ldaptor/ldaptor-0.0.6.ebuild index af728014ec4e..038b782bd67b 100644 --- a/dev-python/ldaptor/ldaptor-0.0.6.ebuild +++ b/dev-python/ldaptor/ldaptor-0.0.6.ebuild @@ -1,19 +1,17 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-python/ldaptor/ldaptor-0.0.6.ebuild,v 1.2 2003/02/13 11:34:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ldaptor/ldaptor-0.0.6.ebuild,v 1.3 2003/02/14 07:48:05 vapier Exp $ -S=${WORKDIR}/${P} -DESCRIPTION="Ldaptor" +DESCRIPTION="set of LDAP utilities for use from the command line" SRC_URI="http://twistedmatrix.com/users/tv/ldaptor/${PN}_${PV}.tar.gz" HOMEPAGE="http://twistedmatrix.com/users/tv/ldaptor/" + LICENSE="LGPL-2.1" SLOT="0" -DEPEND=">=dev-python/twisted-1.0.1-r1" -RDEPEND="$DEPEND" KEYWORDS="~x86 ~alpha ~sparc" IUSE="" -#inherit distutils +DEPEND=">=dev-python/twisted-1.0.1-r1" src_compile() { python setup-ldaptor-utils.py build || \ @@ -23,6 +21,7 @@ src_compile() { python setup-python-ldaptor.py build || \ die "compilation of python-ldaptor failed" } + src_install() { python setup-ldaptor-utils.py install --root=${D} || die python setup-ldaptor-webui.py install --root=${D} || die @@ -40,4 +39,3 @@ src_install() { insinto /usr/share/doc/${PF}/tests doins tests/* } - |