summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/enchant
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-12-22 11:48:03 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-01-02 12:50:24 +0000
commit7dabe7b761e7eaf8a3905f3bbffdee2e4ab6c780 (patch)
treeac35ddba5cadb4d33a1ebef3858bd8af4588dc1d /meta/recipes-support/enchant
parente49389a0ed0a492a572988e0071362c546a5c638 (diff)
downloadpoky-7dabe7b761e7eaf8a3905f3bbffdee2e4ab6c780.tar.gz
enchant: tidy up recipe
* Move recipe definitions into logical order * Fix spacing (From OE-Core rev: b3419d1d0cf3c7d21ed9e2ab65f16b8fc1b352bf) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/enchant')
-rw-r--r--meta/recipes-support/enchant/enchant_1.6.0.bb14
1 files changed, 9 insertions, 5 deletions
diff --git a/meta/recipes-support/enchant/enchant_1.6.0.bb b/meta/recipes-support/enchant/enchant_1.6.0.bb
index b8bb27117a..97a47614cd 100644
--- a/meta/recipes-support/enchant/enchant_1.6.0.bb
+++ b/meta/recipes-support/enchant/enchant_1.6.0.bb
@@ -1,12 +1,13 @@
1SUMMARY = "Enchant Spell checker API Library" 1SUMMARY = "Enchant Spell checker API Library"
2SECTION = "libs" 2SECTION = "libs"
3HOMEPAGE = "http://www.abisource.com/projects/enchant/" 3HOMEPAGE = "http://www.abisource.com/projects/enchant/"
4BUGTRACKER = "http://bugzilla.abisource.com/enter_bug.cgi?product=Enchant" 4BUGTRACKER = "http://bugzilla.abisource.com/enter_bug.cgi?product=Enchant"
5LICENSE = "LGPLv2.1+" 5
6LICENSE = "LGPLv2.1+"
6LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=dfcbabf9131dc9a95febef6753a2958b \ 7LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=dfcbabf9131dc9a95febef6753a2958b \
7 file://src/enchant.h;beginline=1;endline=29;md5=8d881caa1d37523567e1d8f726675a18" 8 file://src/enchant.h;beginline=1;endline=29;md5=8d881caa1d37523567e1d8f726675a18"
8DEPENDS = "aspell glib-2.0" 9
9RDEPENDS_${PN} = "aspell" 10DEPENDS = "aspell glib-2.0"
10 11
11inherit autotools pkgconfig 12inherit autotools pkgconfig
12 13
@@ -21,8 +22,11 @@ EXTRA_OECONF = "--with-aspell-prefix=${STAGING_DIR_HOST}${prefix} \
21 --enable-aspell br_cv_binreloc=no \ 22 --enable-aspell br_cv_binreloc=no \
22 " 23 "
23 24
25export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ "
26
24FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so" 27FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so"
25FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la" 28FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la"
26FILES_${PN}-staticdev += "${libdir}/${BPN}/*.a" 29FILES_${PN}-staticdev += "${libdir}/${BPN}/*.a"
27 30
28export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " 31RDEPENDS_${PN} += "aspell"
32