diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-05-22 01:48:53 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-22 01:48:53 +0000 |
commit | fe19b81b064bb612a85b11ac1b3ee8b40a7a72be (patch) | |
tree | 3a4d0e8a051d7c05529a917730f9efa1c7394ede /packages/sylpheed | |
parent | 405b9c56fd921db33cc33b723145eb0453bf89a8 (diff) | |
parent | a6e39080788cf30c6d71977fae4ca2bf1e7bde8c (diff) |
merge of 45908085bdceb2276493e588d8d89daba46b6d5c
and ec1cfabe499e84bf5627a49cc40bae42b557c638
Diffstat (limited to 'packages/sylpheed')
-rw-r--r-- | packages/sylpheed/sylpheed_2.2.5.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/sylpheed/sylpheed_2.2.5.bb b/packages/sylpheed/sylpheed_2.2.5.bb new file mode 100644 index 0000000000..315f46ea86 --- /dev/null +++ b/packages/sylpheed/sylpheed_2.2.5.bb @@ -0,0 +1,33 @@ +SECTION = "x11/network" +DESCRIPTION = "Mail user agent" +DEPENDS = "gtk+ gpgme gnutls" +MAINTAINER = "Graeme Gregory <dp@xora.org.uk>" +LICENSE = "GPL" +PR = "r5" + +SRC_URI = "http://sylpheed.good-day.net/sylpheed/v2.2/sylpheed-${PV}.tar.bz2 \ + file://sylpheed-2.2.2-libsylph-Makefile-am.patch;patch=1 \ + file://sylpheed-2.2.2-src-Makefile-am.patch;patch=1 \ + file://sylpheed-gnutls_2.2.4.patch;patch=1" + + +FILES_${PN} = "${bindir} ${datadir}/pixmaps ${datadir}/applications" +FILES_${PN}-doc += "${datadir}" + +EXTRA_OECONF = "--enable-gnutls" + +CFLAGS += "-D_GNU_SOURCE" + +do_configure_prepend() { + mkdir -p m4 +} + +inherit autotools + +do_install_append() { + install -d ${D}${datadir}/applications + install -m 0644 sylpheed.desktop ${D}${datadir}/applications/ + install -d ${D}${datadir}/pixmaps + install -m 0644 sylpheed.png ${D}${datadir}/pixmaps/ +} + |