Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 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+ evolution-data-server intltool-native" |
| 8 | RDEPENDS_${PN} = "libedata-book" |
| 9 | |
| 10 | inherit autotools pkgconfig gconf |
| 11 | |
| 12 | EXTRA_OECONF += "--disable-gnome-vfs" |
| 13 | EXTRA_OEMAKE += "GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1" |
| 14 | |
| 15 | do_install_append () { |
| 16 | install -d ${D}/${datadir}/pixmaps |
| 17 | install -m 0644 ${WORKDIR}/stock_contact.png ${D}/${datadir}/pixmaps |
| 18 | install -m 0644 ${WORKDIR}/stock_person.png ${D}/${datadir}/pixmaps |
| 19 | } |
| 20 | |
| 21 | FILES_${PN} += "${datadir}/pixmaps/stock_contact.png \ |
| 22 | ${datadir}/pixmaps/stock_person.png \ |
| 23 | ${datadir}/icons/hicolor" |
| 24 | |
| 25 | SRC_URI = "file://stock_contact.png \ |
| 26 | file://stock_person.png \ |
| 27 | file://contacts-conditionally-install-schema.patch \ |
| 28 | " |