diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-12-22 11:48:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-02 12:50:24 +0000 |
commit | 7dabe7b761e7eaf8a3905f3bbffdee2e4ab6c780 (patch) | |
tree | ac35ddba5cadb4d33a1ebef3858bd8af4588dc1d /meta/recipes-support | |
parent | e49389a0ed0a492a572988e0071362c546a5c638 (diff) | |
download | poky-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')
-rw-r--r-- | meta/recipes-support/enchant/enchant_1.6.0.bb | 14 |
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 @@ | |||
1 | SUMMARY = "Enchant Spell checker API Library" | 1 | SUMMARY = "Enchant Spell checker API Library" |
2 | SECTION = "libs" | 2 | SECTION = "libs" |
3 | HOMEPAGE = "http://www.abisource.com/projects/enchant/" | 3 | HOMEPAGE = "http://www.abisource.com/projects/enchant/" |
4 | BUGTRACKER = "http://bugzilla.abisource.com/enter_bug.cgi?product=Enchant" | 4 | BUGTRACKER = "http://bugzilla.abisource.com/enter_bug.cgi?product=Enchant" |
5 | LICENSE = "LGPLv2.1+" | 5 | |
6 | LICENSE = "LGPLv2.1+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=dfcbabf9131dc9a95febef6753a2958b \ | 7 | LIC_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" |
8 | DEPENDS = "aspell glib-2.0" | 9 | |
9 | RDEPENDS_${PN} = "aspell" | 10 | DEPENDS = "aspell glib-2.0" |
10 | 11 | ||
11 | inherit autotools pkgconfig | 12 | inherit 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 | ||
25 | export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " | ||
26 | |||
24 | FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so" | 27 | FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so" |
25 | FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la" | 28 | FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la" |
26 | FILES_${PN}-staticdev += "${libdir}/${BPN}/*.a" | 29 | FILES_${PN}-staticdev += "${libdir}/${BPN}/*.a" |
27 | 30 | ||
28 | export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " | 31 | RDEPENDS_${PN} += "aspell" |
32 | |||