diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-04-25 21:35:42 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-25 21:35:42 +0000 |
commit | f395b13afb05ca83e1df51b3c58062a44bd59d0a (patch) | |
tree | 66f2a88040f4e3dc13ff708bd59d28fb0f209038 /packages/anthy/anthy_6801.bb | |
parent | 027ae44bd91257588764e5c308cf5002549eb1c2 (diff) |
add anthy, a japanese input method backend library
patches courtesy ph5 and Rolf Leggewie
Diffstat (limited to 'packages/anthy/anthy_6801.bb')
-rw-r--r-- | packages/anthy/anthy_6801.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/anthy/anthy_6801.bb b/packages/anthy/anthy_6801.bb new file mode 100644 index 0000000000..e74b1cda6e --- /dev/null +++ b/packages/anthy/anthy_6801.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "A Japanese input method" +AUTHOR = "Anthy Developers <anthy-dev@lists.sourceforge.jp>" +HOMEPAGE = "http://anthy.sourceforge.jp" +LICENSE = "GPL" +DEPENDS = "anthy-native" +SECTION = "libs/inputmethod" +PR = "r0" + +SRC_URI = "http://osdn.dl.sourceforge.jp/anthy/15893/anthy-6801.tar.gz \ + file://not_build_elc.patch;patch=1 \ + file://2ch_t.patch;patch=1 \ + file://change_anthy_dic_path.patch;patch=1 \ + file://anthy-use-native-mkanthydic-mkdepgraph.patch;patch=1" +S = "${WORKDIR}/anthy-${PV}" + +inherit autotools pkgconfig + +PACKAGES = "${PN} libanthy0 libanthy-dev" + +DESCRIPTION_anthy = "A Japanese input method (backend, dictionary and utility)" +DESCRIPTION_libanthy0 = "Anthy runtime library" +DESCRIPTION_libanthy-dev = "Anthy static library, headers and documets for developers" + +# gettext + +LEAD_SONAME = "libanthy.so.0" +RDEPENDS_anthy = "libanthy0" + +FILES_libanthy0 = "${libdir}/libanthy.so.* \ + ${libdir}/libanthydic.so.* \ + ${libdir}/libanthyinput.so.*" +FILES_libanthy-dev = "${libdir}/libanthy* \ + ${includedir}/anthy \ + ${libdir}/pkgconfig/anthy.pc" +FILES_${PN} = "${bindir}/* ${datadir}/* ${sysconfdir}/*" |