diff options
-rw-r--r-- | meta-efl/recipes-efl/efl/imlib2_git.bb | 3 | ||||
-rw-r--r-- | meta-oe/recipes-sato/claws-mail/claws-mail_3.9.0.bb | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/meta-efl/recipes-efl/efl/imlib2_git.bb b/meta-efl/recipes-efl/efl/imlib2_git.bb index dc91763a8e..8c6ac66192 100644 --- a/meta-efl/recipes-efl/efl/imlib2_git.bb +++ b/meta-efl/recipes-efl/efl/imlib2_git.bb | |||
@@ -11,6 +11,9 @@ inherit efl binconfig | |||
11 | SRC_URI = "git://git.enlightenment.org/legacy/${BPN}.git" | 11 | SRC_URI = "git://git.enlightenment.org/legacy/${BPN}.git" |
12 | S = "${WORKDIR}/git" | 12 | S = "${WORKDIR}/git" |
13 | 13 | ||
14 | # autotools-brokensep | ||
15 | B = "${S}" | ||
16 | |||
14 | PACKAGECONFIG ??= "" | 17 | PACKAGECONFIG ??= "" |
15 | PACKAGECONFIG[gif] = "--with-gif,--without-gif,giflib" | 18 | PACKAGECONFIG[gif] = "--with-gif,--without-gif,giflib" |
16 | PACKAGECONFIG[tiff] = "--with-tiff,--without-tiff,tiff" | 19 | PACKAGECONFIG[tiff] = "--with-tiff,--without-tiff,tiff" |
diff --git a/meta-oe/recipes-sato/claws-mail/claws-mail_3.9.0.bb b/meta-oe/recipes-sato/claws-mail/claws-mail_3.9.0.bb index 831a1402c3..70720462fb 100644 --- a/meta-oe/recipes-sato/claws-mail/claws-mail_3.9.0.bb +++ b/meta-oe/recipes-sato/claws-mail/claws-mail_3.9.0.bb | |||
@@ -14,7 +14,7 @@ SRC_URI[archive.md5sum] = "4c5ac7b21f0ed17d0f6404124c2229a4" | |||
14 | SRC_URI[archive.sha256sum] = "ed70975a5056b3ffc4fe6e977f0d9606febc1499763c090241b029a73ff24e65" | 14 | SRC_URI[archive.sha256sum] = "ed70975a5056b3ffc4fe6e977f0d9606febc1499763c090241b029a73ff24e65" |
15 | 15 | ||
16 | do_configure_append() { | 16 | do_configure_append() { |
17 | cd po ; for PO in *.po ; do MO=`echo $PO | sed s/\\.po//`.gmo ; if ! test -f $MO ; then msgfmt $PO -o $MO ; fi ; done | 17 | cd ${S}/po ; for PO in *.po ; do MO=`echo $PO | sed s/\\.po//`.gmo ; if ! test -f $MO ; then msgfmt $PO -o $MO ; fi ; done; cd ${B} |
18 | } | 18 | } |
19 | 19 | ||
20 | PACKAGECONFIG ??= "startup-notification dbus" | 20 | PACKAGECONFIG ??= "startup-notification dbus" |
@@ -52,7 +52,7 @@ do_install_prepend() { | |||
52 | do_install_append() { | 52 | do_install_append() { |
53 | rm -r ${D}${datadir}/icons | 53 | rm -r ${D}${datadir}/icons |
54 | install -d ${D}${datadir}/pixmaps | 54 | install -d ${D}${datadir}/pixmaps |
55 | install -m 0644 claws-mail.png ${D}${datadir}/pixmaps/ | 55 | install -m 0644 ${S}/claws-mail.png ${D}${datadir}/pixmaps/ |
56 | sed -i 's/Icon=[^.]*$/&.png/' ${D}${datadir}/applications/claws-mail.desktop | 56 | sed -i 's/Icon=[^.]*$/&.png/' ${D}${datadir}/applications/claws-mail.desktop |
57 | } | 57 | } |
58 | 58 | ||