summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-01-18 02:09:35 +0000
committerMike Frysinger <vapier@gentoo.org>2007-01-18 02:09:35 +0000
commite73495b3f6dda28de034f2b2f7045450c24fe8bb (patch)
tree7e8d48c563a52872fcfb5d04ba4ac1009d205f7e /eclass
parentUpdate the snapshot to a newer version without linking errors. Also disable S... (diff)
downloadgentoo-2-e73495b3f6dda28de034f2b2f7045450c24fe8bb.tar.gz
gentoo-2-e73495b3f6dda28de034f2b2f7045450c24fe8bb.tar.bz2
gentoo-2-e73495b3f6dda28de034f2b2f7045450c24fe8bb.zip
move EXPORT_FUNCTIONS to the end and use emake in src_install
Diffstat (limited to 'eclass')
-rw-r--r--eclass/enlightenment.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass
index 05efc0b4b03b..c4c11d8a9003 100644
--- a/eclass/enlightenment.eclass
+++ b/eclass/enlightenment.eclass
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.69 2006/12/07 17:23:49 uberlord Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.70 2007/01/18 02:09:35 vapier Exp $
#
# Author: vapier@gentoo.org
@@ -27,8 +27,6 @@ inherit eutils libtool
# SRC_URI EURI_STATE
# S EURI_STATE
-EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst
-
#E17_DEFAULT_CVS="cvs.sourceforge.net:/cvsroot/enlightenment"
E17_DEFAULT_CVS="anoncvs.enlightenment.org:/var/cvs/e"
@@ -158,7 +156,7 @@ enlightenment_src_compile() {
}
enlightenment_src_install() {
- make install DESTDIR="${D}" || enlightenment_die
+ emake install DESTDIR="${D}" || enlightenment_die
find "${D}" -name CVS -type d -exec rm -rf '{}' \; 2>/dev/null
dodoc AUTHORS ChangeLog NEWS README TODO ${EDOCS}
use doc && [[ -d doc ]] && dohtml -r doc/*
@@ -167,3 +165,5 @@ enlightenment_src_install() {
enlightenment_pkg_postinst() {
enlightenment_warning_msg
}
+
+EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst