diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-18 02:09:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-01-18 02:09:35 +0000 |
commit | 39bb22fbe27fb7aba452061bef4bd632d883fcf3 (patch) | |
tree | 6949203756fabd5b5d6815a52ee2ce7f3cb92e97 /eclass | |
parent | Update the snapshot to a newer version without linking errors. Also disable S... (diff) | |
download | historical-39bb22fbe27fb7aba452061bef4bd632d883fcf3.tar.gz historical-39bb22fbe27fb7aba452061bef4bd632d883fcf3.tar.bz2 historical-39bb22fbe27fb7aba452061bef4bd632d883fcf3.zip |
move EXPORT_FUNCTIONS to the end and use emake in src_install
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/enlightenment.eclass | 10 |
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 |