summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-10-11 18:34:43 +0000
committerMike Frysinger <vapier@gentoo.org>2013-10-11 18:34:43 +0000
commiteb79ffa7cdc4efed41ce669b70704855959ec985 (patch)
tree34c04423942bc2bd41537f8f94f0d46dc6b087ef /eclass
parentversion bump, fixed minor regression in eix-0.29.5 (diff)
downloadhistorical-eb79ffa7cdc4efed41ce669b70704855959ec985.tar.gz
historical-eb79ffa7cdc4efed41ce669b70704855959ec985.tar.bz2
historical-eb79ffa7cdc4efed41ce669b70704855959ec985.zip
add multiple inherit protection
Diffstat (limited to 'eclass')
-rw-r--r--eclass/enlightenment.eclass11
1 files changed, 8 insertions, 3 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass
index 4886d63a5272..d61bd4e1b761 100644
--- a/eclass/enlightenment.eclass
+++ b/eclass/enlightenment.eclass
@@ -1,12 +1,15 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.103 2013/10/04 15:27:28 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.104 2013/10/11 18:34:43 vapier Exp $
# @ECLASS: enlightenment.eclass
# @MAINTAINER:
# enlightenment@gentoo.org
# @BLURB: simplify enlightenment package management
+if [[ ${___ECLASS_ONCE_ENLIGHTENMENT} != "recur -_+^+_- spank" ]] ; then
+___ECLASS_ONCE_ENLIGHTENMENT="recur -_+^+_- spank"
+
inherit eutils libtool
# @ECLASS-VARIABLE: E_PYTHON
@@ -93,8 +96,8 @@ fi
ENLIGHTENMENT_EXPF="src_unpack src_compile src_install"
case "${EAPI:-0}" in
- 2|3|4|5) ENLIGHTENMENT_EXPF+=" src_prepare src_configure" ;;
- *) ;;
+2|3|4|5) ENLIGHTENMENT_EXPF+=" src_prepare src_configure" ;;
+*) ;;
esac
EXPORT_FUNCTIONS ${ENLIGHTENMENT_EXPF}
@@ -192,3 +195,5 @@ enlightenment_src_install() {
use static-libs || find "${D}" -name '*.la' -exec rm -f {} +
fi
}
+
+fi