diff options
Diffstat (limited to 'meta/recipes-sato/pimlico/contacts.inc')
-rw-r--r-- | meta/recipes-sato/pimlico/contacts.inc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-sato/pimlico/contacts.inc b/meta/recipes-sato/pimlico/contacts.inc new file mode 100644 index 0000000000..a424295aca --- /dev/null +++ b/meta/recipes-sato/pimlico/contacts.inc | |||
@@ -0,0 +1,31 @@ | |||
1 | DESCRIPTION = "Address-book application." | ||
2 | HOMEPAGE = "http://pimlico-project.org/contacts.html" | ||
3 | BUGTRACKER = "https://bugzilla.gnome.org/" | ||
4 | |||
5 | LICENSE = "GPLv2 & GPLv2+ & GPLv3+ " | ||
6 | SECTION = "x11" | ||
7 | DEPENDS = "glib-2.0 gtk+ eds-dbus" | ||
8 | DEPENDS_append_poky = " libowl" | ||
9 | RDEPENDS = "libedata-book" | ||
10 | |||
11 | inherit autotools pkgconfig | ||
12 | |||
13 | OWL = "--disable-owl" | ||
14 | OWL_poky = "--enable-owl" | ||
15 | |||
16 | EXTRA_OECONF += "--disable-gnome-vfs ${OWL}" | ||
17 | EXTRA_OEMAKE += "GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1" | ||
18 | |||
19 | do_install_append () { | ||
20 | install -d ${D}/${datadir}/pixmaps | ||
21 | install -m 0644 ${WORKDIR}/stock_contact.png ${D}/${datadir}/pixmaps | ||
22 | install -m 0644 ${WORKDIR}/stock_person.png ${D}/${datadir}/pixmaps | ||
23 | } | ||
24 | |||
25 | FILES_${PN} += "${datadir}/pixmaps/stock_contact.png \ | ||
26 | ${datadir}/pixmaps/stock_person.png" | ||
27 | |||
28 | SRC_URI = "file://stock_contact.png \ | ||
29 | file://stock_person.png" | ||
30 | |||
31 | SRC_URI_append_poky = " file://contacts-owl-window-menu.patch;apply=yes " | ||