blob: a741f28d99f51d6f146002373233531871949013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
DESCRIPTION = "Tracker is a tool designed to extract information and metadata about your personal data so that it can be searched easily and quickly."
LICENSE = "GPLv2"
DEPENDS = "file gtk+ gstreamer gamin dbus poppler libexif libgsf libgnomecanvas gmime"
HOMEPAGE = "http://www.tracker-project.org/"
inherit autotools_stage pkgconfig gnome gettext
SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/tracker/0.6/tracker-${PV}.tar.bz2 \
file://munge-configure.ac-cross-compile.patch;patch=1 \
file://05-tracker-ioprio-cross.patch;patch=1 \
file://10-drop-bogus-version-info.patch;patch=1 \
file://20-tracker-defaults.patch;patch=1 \
file://30-gmime-2.4.patch;patch=1 \
file://99-autoreconf.patch;patch=1 \
file://90tracker"
EXTRA_OECONF += " tracker_cv_have_ioprio=yes"
LEAD_SONAME = "libtrackerclient.so.0"
do_install_append() {
cp -dPr ${D}${STAGING_DATADIR}/* ${D}${datadir}/ || true
install -d ${D}/${sysconfdir}/X11/Xsession.d/
install -m 0755 ${WORKDIR}/90tracker ${D}/${sysconfdir}/X11/Xsession.d/
}
FILES_${PN} += "${datadir}/dbus-1/"
FILES_${PN}-dbg += "${libdir}/*/*/.debug"
CONFFILES_${PN} += "${sysconfdir}/X11/Xsession.d/90tracker"
|