aboutsummaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMaksim 'max_posedon' Melnikau <maxposedon@gmail.com>2010-01-13 03:37:53 +0000
committerMaksim 'max_posedon' Melnikau <maxposedon@gmail.com>2010-01-13 03:37:53 +0000
commiteaea21c3a0d7a22d5f2334576999ca5e0f41f06e (patch)
treeab6578380f1191747b9f1f39da54716904aa6c5f /eclass
parentrevert commit 725, it was wrong, vdbt-1.1.3 works as is (diff)
downloadembedded-cross-eaea21c3a0d7a22d5f2334576999ca5e0f41f06e.tar.gz
embedded-cross-eaea21c3a0d7a22d5f2334576999ca5e0f41f06e.tar.bz2
embedded-cross-eaea21c3a0d7a22d5f2334576999ca5e0f41f06e.zip
fix cornucopia_git eclass
Diffstat (limited to 'eclass')
-rw-r--r--eclass/cornucopia_git.eclass11
1 files changed, 8 insertions, 3 deletions
diff --git a/eclass/cornucopia_git.eclass b/eclass/cornucopia_git.eclass
index 55b2a0b..7f4e92a 100644
--- a/eclass/cornucopia_git.eclass
+++ b/eclass/cornucopia_git.eclass
@@ -3,7 +3,7 @@
# $Header: $
EAPI=2
-inherit autotools base git
+inherit base git autotools
HOMEPAGE="http://www.freesmartphone.org"
EGIT_REPO_URI="git://git.freesmartphone.org/cornucopia.git"
@@ -11,11 +11,16 @@ EGIT_PROJECT="cornucopia"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS=""
+KEYWORDS="~arm ~x86 ~amd64"
IUSE=""
-src_prepare() {
+cornucopia_git_src_prepare() {
+ git_src_prepare
+ base_src_prepare
S="${WORKDIR}/${P}/${PN}"
cd ${S}
eautoreconf
}
+
+EXPORT_FUNCTIONS src_prepare
+