Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
vapier 10/09/18 08:38:08
Modified: enlightenment.eclass
Log:
drop distutils support now that upstream too has dropped it
Revision Changes Path
1.87 eclass/enlightenment.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/enlightenment.eclass?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/enlightenment.eclass?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/enlightenment.eclass?r1=1.86&r2=1.87
Index: enlightenment.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- enlightenment.eclass 28 Aug 2010 21:15:24 -0000 1.86
+++ enlightenment.eclass 18 Sep 2010 08:38:08 -0000 1.87
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.86 2010/08/28 21:15:24 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.87 2010/09/18 08:38:08 vapier Exp $
# @ECLASS: enlightenment.eclass
# @MAINTAINER:
@@ -73,11 +73,9 @@
# Parse requested python state
: ${E_PYTHON:=${E_CYTHON}}
if [[ -n ${E_PYTHON} ]] ; then
- WANT_AUTOTOOLS="no"
-
PYTHON_DEPEND="2:2.4"
- inherit python distutils
+ inherit python
fi
if [[ ${WANT_AUTOTOOLS} == "yes" ]] ; then
@@ -159,11 +157,7 @@
enlightenment_src_compile() {
hasq src_configure ${ENLIGHTENMENT_EXPF} || enlightenment_src_configure
- if [[ -z ${E_PYTHON} ]] ; then
- emake || die "emake failed"
- else
- distutils_src_compile
- fi
+ emake || die
if use doc ; then
if [[ -x ./gendoc ]] ; then
|
|