diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2007-11-08 11:06:10 +0000 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2007-11-08 11:06:10 +0000 |
commit | 47007ab845cf3ff4c9038412df673853e5bde900 (patch) | |
tree | db0431f5f6429f12bcc4712e52f82003cc632a72 /packages/gpephone | |
parent | bd734d95a7782fe13dc95d62aa79ca337c813344 (diff) |
libchenabler: Add patch to fix i18n breakage.
Diffstat (limited to 'packages/gpephone')
-rw-r--r-- | packages/gpephone/libchenabler/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/gpephone/libchenabler/po.patch | 9 | ||||
-rw-r--r-- | packages/gpephone/libchenabler_0.1.bb | 8 |
3 files changed, 16 insertions, 1 deletions
diff --git a/packages/gpephone/libchenabler/.mtn2git_empty b/packages/gpephone/libchenabler/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/gpephone/libchenabler/.mtn2git_empty diff --git a/packages/gpephone/libchenabler/po.patch b/packages/gpephone/libchenabler/po.patch new file mode 100644 index 0000000000..0f880f5f49 --- /dev/null +++ b/packages/gpephone/libchenabler/po.patch @@ -0,0 +1,9 @@ +--- libchenabler-0.1/configure.ac~ 2007-11-08 12:01:26.000000000 +0100 ++++ libchenabler-0.1/configure.ac 2007-11-08 12:01:26.000000000 +0100 +@@ -31,5 +31,6 @@ + src/Makefile + database/Makefile + libvochenabler.pc ++po/Makefile.in + ]) + AC_OUTPUT diff --git a/packages/gpephone/libchenabler_0.1.bb b/packages/gpephone/libchenabler_0.1.bb index 740ed21c65..4c06e2fbd3 100644 --- a/packages/gpephone/libchenabler_0.1.bb +++ b/packages/gpephone/libchenabler_0.1.bb @@ -3,14 +3,20 @@ DESCRIPTION = "LiPS voice call library." SECTION = "gpe/libs" PRIORITY = "optional" DEPENDS = "glib-2.0 sqlite3 librecord" -PR = "r0" +PR = "r1" GPE_TARBALL_SUFFIX = "gz" inherit gpephone pkgconfig autotools +SRC_URI += "file://po.patch;patch=1" FILES_${PN} += " ${datadir}/vochistory" +do_configure_prepend () { + mkdir "${S}/po" + touch "${S}/po/POTFILES.in" +} + do_stage () { autotools_stage_all } |