diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-09-13 23:38:35 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-09-13 23:38:35 +0000 |
commit | 62c86459c58ca9a7aca70163dc22679a2c018836 (patch) | |
tree | 4229fc1da686fa2562d0ff8976338ad95041ffb7 /classes | |
parent | f7d0b1b6f91cd277e52e8c289c3c22923bdeacd2 (diff) |
e17: remove e-utils and examine, simplify other recipes
Diffstat (limited to 'classes')
-rw-r--r-- | classes/e.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/e.bbclass b/classes/e.bbclass index 14199aaf0d..7166e729b5 100644 --- a/classes/e.bbclass +++ b/classes/e.bbclass @@ -1,5 +1,7 @@ HOMEPAGE = "http://www.enlightenment.org" SECTION = "e/apps" +SRCNAME ?= "${PN}" + SRC_URI = "svn://svn.enlightenment.org/svn/e/trunk;module=${SRCNAME};proto=http" S = "${WORKDIR}/${SRCNAME}" @@ -10,6 +12,10 @@ do_prepsources () { } addtask prepsources after do_fetch before do_unpack +do_configure_append() { + find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g +} + export CURL_CONFIG = "${STAGING_BINDIR_CROSS}/curl-config" export FREETYPE_CONFIG = "${STAGING_BINDIR_CROSS}/freetype-config" |