diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-21 11:07:18 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-21 11:07:18 +0000 |
commit | 4ed98327c03d4167e41a85933d402a51191a3864 (patch) | |
tree | 26cb04d2db14a8f74e820aaa9d3e72096180d1e7 /meta/packages/pimlico | |
parent | ce9fe6a6f98da0924b302cd0db2970bdefc789e6 (diff) | |
download | poky-4ed98327c03d4167e41a85933d402a51191a3864.tar.gz |
contacts: added 0.4, unified recipes, fixed PV in svn version, disabled gnome-vfs
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1379 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/pimlico')
-rw-r--r-- | meta/packages/pimlico/contacts.inc | 16 | ||||
-rw-r--r-- | meta/packages/pimlico/contacts_0.4.bb | 5 | ||||
-rw-r--r-- | meta/packages/pimlico/contacts_svn.bb | 30 |
3 files changed, 30 insertions, 21 deletions
diff --git a/meta/packages/pimlico/contacts.inc b/meta/packages/pimlico/contacts.inc new file mode 100644 index 0000000000..5fa493fab3 --- /dev/null +++ b/meta/packages/pimlico/contacts.inc | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "Address-book application." | ||
2 | LICENSE = "LGPL" | ||
3 | SECTION = "x11" | ||
4 | DEPENDS = "glib-2.0 gtk+ eds-dbus" | ||
5 | RDEPENDS = "libedata-book" | ||
6 | |||
7 | inherit autotools pkgconfig | ||
8 | |||
9 | do_install_append () { | ||
10 | install -d ${D}/${datadir}/pixmaps | ||
11 | install -m 0644 ${WORKDIR}/stock_contact.png ${D}/${datadir}/pixmaps | ||
12 | install -m 0644 ${WORKDIR}/stock_person.png ${D}/${datadir}/pixmaps | ||
13 | } | ||
14 | |||
15 | FILES_${PN} += "${datadir}/pixmaps/stock_contact.png \ | ||
16 | ${datadir}/pixmaps/stock_person.png" | ||
diff --git a/meta/packages/pimlico/contacts_0.4.bb b/meta/packages/pimlico/contacts_0.4.bb new file mode 100644 index 0000000000..28e4cc29ce --- /dev/null +++ b/meta/packages/pimlico/contacts_0.4.bb | |||
@@ -0,0 +1,5 @@ | |||
1 | require contacts.inc | ||
2 | |||
3 | SRC_URI = "http://projects.o-hand.com/sources/${PN}/${PN}-${PV}.tar.gz \ | ||
4 | file://stock_contact.png \ | ||
5 | file://stock_person.png" | ||
diff --git a/meta/packages/pimlico/contacts_svn.bb b/meta/packages/pimlico/contacts_svn.bb index 1674b80f99..7687210b52 100644 --- a/meta/packages/pimlico/contacts_svn.bb +++ b/meta/packages/pimlico/contacts_svn.bb | |||
@@ -1,29 +1,17 @@ | |||
1 | LICENSE = "LGPL" | 1 | require contacts.inc |
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 | 2 | ||
9 | PV = "0.1+svn${SRCDATE}" | 3 | #DEPENDS += "gnome-vfs" |
4 | #RDEPENDS += "gnome-vfs-plugin-file" | ||
5 | #RRECOMMENDS += "gnome-vfs-plugin-http" | ||
6 | |||
7 | PV = "0.4+svn${SRCDATE}" | ||
8 | |||
9 | DEFAULT_PREFERENCE = "-1" | ||
10 | 10 | ||
11 | SRC_URI = "svn://svn.o-hand.com/repos/${PN};module=trunk;proto=http \ | 11 | SRC_URI = "svn://svn.o-hand.com/repos/${PN};module=trunk;proto=http \ |
12 | file://stock_contact.png \ | 12 | file://stock_contact.png \ |
13 | file://stock_person.png" | 13 | file://stock_person.png" |
14 | 14 | ||
15 | inherit autotools pkgconfig | ||
16 | |||
17 | S = "${WORKDIR}/trunk" | 15 | S = "${WORKDIR}/trunk" |
18 | 16 | ||
19 | EXTRA_OECONF = "--enable-gnome-vfs" | 17 | #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 | |||