diff options
author | Ross Burton <ross@openedhand.com> | 2007-03-13 09:30:11 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-03-13 09:30:11 +0000 |
commit | 14a2072aae7a7f0365529e79cb0b1b0807df15b8 (patch) | |
tree | 5679031ffcb9424e730c131e83bde2903d37fdfe /meta/packages/pimlico/contacts_svn.bb | |
parent | 2d784b031ee4162bad68f95cd1751b83efff0abe (diff) | |
download | poky-14a2072aae7a7f0365529e79cb0b1b0807df15b8.tar.gz |
Move Contacts to Pimlico
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1340 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/pimlico/contacts_svn.bb')
-rw-r--r-- | meta/packages/pimlico/contacts_svn.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/packages/pimlico/contacts_svn.bb b/meta/packages/pimlico/contacts_svn.bb new file mode 100644 index 0000000000..1674b80f99 --- /dev/null +++ b/meta/packages/pimlico/contacts_svn.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | LICENSE = "LGPL" | ||
2 | SECTION = "x11" | ||
3 | DEPENDS = "glib-2.0 gtk+ gnome-vfs eds-dbus" | ||
4 | RDEPENDS = "gnome-vfs-plugin-file libedata-book" | ||
5 | RRECOMMENDS = "gnome-vfs-plugin-http" | ||
6 | DESCRIPTION = "Contacts is an address-book application." | ||
7 | PR = "r5" | ||
8 | |||
9 | PV = "0.1+svn${SRCDATE}" | ||
10 | |||
11 | SRC_URI = "svn://svn.o-hand.com/repos/${PN};module=trunk;proto=http \ | ||
12 | file://stock_contact.png \ | ||
13 | file://stock_person.png" | ||
14 | |||
15 | inherit autotools pkgconfig | ||
16 | |||
17 | S = "${WORKDIR}/trunk" | ||
18 | |||
19 | EXTRA_OECONF = "--enable-gnome-vfs" | ||
20 | |||
21 | do_install_append () { | ||
22 | install -d ${D}/${datadir}/pixmaps | ||
23 | install -m 0644 ${WORKDIR}/stock_contact.png ${D}/${datadir}/pixmaps | ||
24 | install -m 0644 ${WORKDIR}/stock_person.png ${D}/${datadir}/pixmaps | ||
25 | } | ||
26 | |||
27 | FILES_${PN} += "${datadir}/pixmaps/stock_contact.png \ | ||
28 | ${datadir}/pixmaps/stock_person.png" | ||
29 | |||