diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2006-08-01 16:25:02 +0000 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2006-08-01 16:25:02 +0000 |
commit | 0fe2c861b31baa7c6083223d0a995f2ebe2d51bf (patch) | |
tree | eb8a3ad815ac6f19672f4821d5fc156b5dc937a1 /packages/sylpheed/sylpheed_2.2.7.bb | |
parent | 665fd7260c27f5c3eaee610b9b6ca41c20fe9c4d (diff) | |
parent | 3e50e535cb400482aa7ecd709e5f6785272f9c51 (diff) |
merge of 2e4e17489b3fa4aeb0a87a036efb8b485adec26b
and 58ff55500be03d6f8ddc5c54027951e93cf4b7a2
Diffstat (limited to 'packages/sylpheed/sylpheed_2.2.7.bb')
-rw-r--r-- | packages/sylpheed/sylpheed_2.2.7.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/sylpheed/sylpheed_2.2.7.bb b/packages/sylpheed/sylpheed_2.2.7.bb new file mode 100644 index 0000000000..3ea47c44dd --- /dev/null +++ b/packages/sylpheed/sylpheed_2.2.7.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/ +} + |