diff options
author | Frans Meulenbroeks <fransmeulenbroeks@yahoo.com> | 2006-06-12 16:43:22 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-12 16:43:22 +0000 |
commit | 29b7baee5177b23d883d8273e0d723cab3b2106c (patch) | |
tree | 8ff70dbaf16009af09016e0890b45193deb61b62 /packages/sylpheed | |
parent | 677297a21ee1aef58c302dfcba97416cbaae16c7 (diff) | |
parent | c57248a0ba3e82e7e2111a1f23a5dfb91495d7da (diff) |
merge of 472137c91cd2763cfea42083bda4e61baa8fadac
and ea7b1dd351debede509c701575f64be3804a0c93
Diffstat (limited to 'packages/sylpheed')
-rw-r--r-- | packages/sylpheed/sylpheed_2.2.6.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/sylpheed/sylpheed_2.2.6.bb b/packages/sylpheed/sylpheed_2.2.6.bb new file mode 100644 index 0000000000..3ea47c44dd --- /dev/null +++ b/packages/sylpheed/sylpheed_2.2.6.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 = "r0" + +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 = "--disable-ssl --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/ +} + |