aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-03-09 09:52:15 -0700
committerTom Rini <tom_rini@mentor.com>2011-03-09 12:17:16 -0700
commit192fbf06d70f38513f4f65a0008d7ec336e62044 (patch)
tree51d00a63e6808acaace1f8dfa4174183bd5ab004
parentbaab204d0729d1b6e23ac1f3c21704b1187694f7 (diff)
downloadopenembedded-192fbf06d70f38513f4f65a0008d7ec336e62044.tar.gz
guile: Update to use 'inherit gettext'
In addition, for the versions of guile we have, they are both LGPLv2.1 (guile 2.0 is LGPLv3). Signed-off-by: Tom Rini <tom_rini@mentor.com>
-rw-r--r--recipes/guile/guile-native.inc8
-rw-r--r--recipes/guile/guile.inc6
2 files changed, 6 insertions, 8 deletions
diff --git a/recipes/guile/guile-native.inc b/recipes/guile/guile-native.inc
index 831e088134..30f2b31d61 100644
--- a/recipes/guile/guile-native.inc
+++ b/recipes/guile/guile-native.inc
@@ -1,10 +1,8 @@
SECTION = "unknown"
-LICENSE = "GPL"
-DEPENDS = "gettext-native gmp-native"
+LICENSE = "LGPLv2.1"
+DEPENDS = "gmp-native"
-inherit autotools native
-
-S="${WORKDIR}/guile-${PV}"
+inherit autotools native gettext
do_configure_append() {
find ${S} -name Makefile | xargs sed -i s:'-Werror':'':g
diff --git a/recipes/guile/guile.inc b/recipes/guile/guile.inc
index b2d6833c94..f8252307c2 100644
--- a/recipes/guile/guile.inc
+++ b/recipes/guile/guile.inc
@@ -2,13 +2,13 @@ DESCRIPTION = "Guile is an interpreter for the Scheme programming language, \
packaged as a library which can be incorporated into your programs."
HOMEPAGE = "http://www.gnu.org/software/guile/guile.html"
SECTION = "devel/scheme"
-DEPENDS = "guile-native gmp libtool"
-LICENSE = "GPL"
+DEPENDS = "guile-native gmp"
+LICENSE = "LGPLv2.1"
PACKAGES =+ "${PN}-el"
FILES_${PN}-el = "${datadir}/emacs"
DESCRIPTION_${PN}-el = "Emacs lisp files for Guile"
-inherit autotools
+inherit autotools gettext
acpaths = "-I ${S}/guile-config"