diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-20 06:57:59 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-20 06:57:59 +0000 |
commit | 272312d86a6d0d5e8045b66e9f381b1974a2ffca (patch) | |
tree | 621db03a4288ae84a28be7f39b66f29509e371e3 /packages/sylpheed/sylpheed_2.2.9.bb | |
parent | c6ea5e057c49dbf40b6e495ea1e29890cbeb2ae0 (diff) | |
parent | e59264b9bfe147bf874cb884bc474882cc1e73d1 (diff) |
merge of '2754e872d313aa16f8b70a6b1475a5fe5cd1b5c0'
and 'f8e3d83965086984baadee15f33b6b7a0bdfe743'
Diffstat (limited to 'packages/sylpheed/sylpheed_2.2.9.bb')
-rw-r--r-- | packages/sylpheed/sylpheed_2.2.9.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/sylpheed/sylpheed_2.2.9.bb b/packages/sylpheed/sylpheed_2.2.9.bb new file mode 100644 index 0000000000..6223624fc5 --- /dev/null +++ b/packages/sylpheed/sylpheed_2.2.9.bb @@ -0,0 +1,32 @@ +SECTION = "x11/network" +DESCRIPTION = "Mail user agent" +DEPENDS = "gtk+ gpgme gnutls" +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/ +} + |