diff options
Diffstat (limited to 'meta/recipes-sato/eds/eds-dbus_2.20.0.bb')
-rw-r--r-- | meta/recipes-sato/eds/eds-dbus_2.20.0.bb | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/meta/recipes-sato/eds/eds-dbus_2.20.0.bb b/meta/recipes-sato/eds/eds-dbus_2.20.0.bb new file mode 100644 index 0000000000..2cbc9037a9 --- /dev/null +++ b/meta/recipes-sato/eds/eds-dbus_2.20.0.bb | |||
@@ -0,0 +1,90 @@ | |||
1 | DESCRIPTION = "Evolution database backend server" | ||
2 | HOMEPAGE = "http://www.gnome.org/projects/evolution/" | ||
3 | BUGTRACKER = "https://bugzilla.gnome.org/" | ||
4 | |||
5 | LICENSE = "LGPLv2 & LGPLv2+" | ||
6 | |||
7 | DEPENDS = "intltool-native glib-2.0 gtk+ gconf dbus db gnome-common virtual/libiconv zlib libsoup libglade" | ||
8 | |||
9 | PR = "r1" | ||
10 | |||
11 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/mobile/2.23/2.23.92/sources/evolution-data-server-dbus-${PV}.tar.gz \ | ||
12 | file://oh-contact.patch;patch=1;pnum=0 \ | ||
13 | file://no_iconv_test.patch;patch=1 \ | ||
14 | file://iconv-detect.h" | ||
15 | |||
16 | S = "${WORKDIR}/evolution-data-server-dbus-${PV}" | ||
17 | |||
18 | inherit autotools pkgconfig | ||
19 | |||
20 | # -ldb needs this on some platforms | ||
21 | LDFLAGS += "-lpthread" | ||
22 | |||
23 | do_configure_append () { | ||
24 | cp ${WORKDIR}/iconv-detect.h ${S} | ||
25 | } | ||
26 | |||
27 | EXTRA_OECONF = "--without-openldap --with-dbus --without-bug-buddy \ | ||
28 | --with-soup --with-libdb=${STAGING_DIR_HOST}${prefix} \ | ||
29 | --disable-smime --disable-nss --disable-nntp --disable-gtk-doc" | ||
30 | |||
31 | |||
32 | PACKAGES =+ "libcamel libcamel-dev libebook libebook-dev libecal libecal-dev \ | ||
33 | libedata-book libedata-book-dev libedata-cal libedata-cal-dev \ | ||
34 | libedataserver libedataserver-dev \ | ||
35 | libedataserverui libedataserverui-dev" | ||
36 | |||
37 | FILES_${PN}-dev =+ "${libdir}/pkgconfig/evolution-data-server-*.pc" | ||
38 | FILES_${PN}-dbg =+ "${libdir}/evolution-data-server-*/camel-providers/.debug \ | ||
39 | ${libdir}/evolution-data-server*/extensions/.debug/" | ||
40 | RRECOMMENDS_${PN}-dev += "libecal-dev libebook-dev" | ||
41 | |||
42 | FILES_libcamel = "${libexecdir}/camel-* ${libdir}/libcamel-*.so.* \ | ||
43 | ${libdir}/libcamel-provider-*.so.* \ | ||
44 | ${libdir}/evolution-data-server-*/camel-providers/*.so \ | ||
45 | ${libdir}/evolution-data-server-*/camel-providers/*.urls" | ||
46 | FILES_libcamel-dev = "${libdir}/libcamel-*.so ${libdir}/libcamel-provider-*.so \ | ||
47 | ${libdir}/pkgconfig/camel*pc \ | ||
48 | ${includedir}/evolution-data-server*/camel" | ||
49 | |||
50 | FILES_libebook = "${libdir}/libebook-*.so.*" | ||
51 | FILES_libebook-dev = "${libdir}/libebook-1.2.so \ | ||
52 | ${libdir}/pkgconfig/libebook-*.pc \ | ||
53 | ${includedir}/evolution-data-server*/libebook/*.h" | ||
54 | RRECOMMENDS_libebook = "libedata-book" | ||
55 | |||
56 | FILES_libecal = "${libdir}/libecal-*.so.* \ | ||
57 | ${datadir}/evolution-data-server-1.4/zoneinfo" | ||
58 | |||
59 | FILES_libecal-dev = "${libdir}/libecal-*.so ${libdir}/pkgconfig/libecal-*.pc \ | ||
60 | ${includedir}/evolution-data-server*/libecal/*.h \ | ||
61 | ${includedir}/evolution-data-server*/libical/*.h" | ||
62 | RRECOMMENDS_libecal = "libedata-cal tzdata" | ||
63 | |||
64 | FILES_libedata-book = "${libexecdir}/e-addressbook-factory \ | ||
65 | ${datadir}/dbus-1/services/*.AddressBook.service \ | ||
66 | ${libdir}/libedata-book-*.so.* \ | ||
67 | ${libdir}/evolution-data-server-*/extensions/libebook*.so \ | ||
68 | ${datadir}/evolution-data-server-1.4/weather/Locations.xml" | ||
69 | FILES_libedata-book-dev = "${libdir}/libedata-book-*.so \ | ||
70 | ${libdir}/pkgconfig/libedata-book-*.pc \ | ||
71 | ${includedir}/evolution-data-server-*/libedata-book" | ||
72 | |||
73 | FILES_libedata-cal = "${libexecdir}/e-calendar-factory \ | ||
74 | ${datadir}/dbus-1/services/*.Calendar.service \ | ||
75 | ${libdir}/libedata-cal-*.so.* \ | ||
76 | ${libdir}/evolution-data-server-*/extensions/libecal*.so" | ||
77 | FILES_libedata-cal-dev = "${libdir}/libedata-cal-*.so \ | ||
78 | ${libdir}/pkgconfig/libedata-cal-*.pc \ | ||
79 | ${includedir}/evolution-data-server-*/libedata-cal" | ||
80 | |||
81 | FILES_libedataserver = "${libdir}/libedataserver-*.so.*" | ||
82 | FILES_libedataserver-dev = "${libdir}/libedataserver-*.so \ | ||
83 | ${libdir}/pkgconfig/libedataserver-*.pc \ | ||
84 | ${includedir}/evolution-data-server-*/libedataserver/*.h" | ||
85 | |||
86 | FILES_libedataserverui = "${libdir}/libedataserverui-*.so.* ${datadir}/evolution-data-server-1.4/glade/*.glade" | ||
87 | FILES_libedataserverui-dev = "${libdir}/libedataserverui-*.so \ | ||
88 | ${libdir}/pkgconfig/libedataserverui-*.pc \ | ||
89 | ${includedir}/evolution-data-server-*/libedataserverui/*.h" | ||
90 | |||