diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-05-09 10:06:07 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-09 10:06:07 +0000 |
commit | 7dcec34e18da3d41ba29a0997f0a2395655674c3 (patch) | |
tree | c855616df4aaf070fc3adc69d92eba8b44177352 /packages/libetpan/libetpan_0.45.bb | |
parent | 54a4531a696110179198dacbf16a9d9b63f24cc6 (diff) |
packages/libetpan/libetpan_0.45.bb : new version of libetpan required for
sylpheed-claws. This version I have fixed building with threads so it
is slightly more than just a version bump so other users of libetpan please
check for regressions.
packages/sylpheed/sylpheed-claws_2.2.0.bb : add sylpheed-claws, the brother
of sylpheed with more dev/unstable work.
Diffstat (limited to 'packages/libetpan/libetpan_0.45.bb')
-rw-r--r-- | packages/libetpan/libetpan_0.45.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/libetpan/libetpan_0.45.bb b/packages/libetpan/libetpan_0.45.bb new file mode 100644 index 0000000000..b4ea299b9a --- /dev/null +++ b/packages/libetpan/libetpan_0.45.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "libetpan is a library for communicating with mail and news servers. \ +It supports the protocols SMTP, POP3, IMAP and NNTP." +HOMEPAGE = "http://www.etpan.org" +SECTION = "libs" +DEPENDS = "gnutls" +LICENSE = "BSD" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/libetpan/libetpan-${PV}.tar.gz \ + file://etpan_suffix.patch;patch=1 \ + file://mailstream.patch;patch=1 \ + file://configure-pthreads.patch;patch=1 " + +inherit autotools pkgconfig gettext + +EXTRA_OECONF = "--without-openssl --with-gnutls --disable-db" + +do_stage() { + oe_runmake install includedir=${STAGING_INCDIR} libdir=${STAGING_LIBDIR} bindir=${STAGING_BINDIR} +} + +FILES_${PN} = "${libdir}/lib*.so.*" +FILES_${PN}-dev = "${bindir} ${includedir} ${libdir}/lib*.so ${libdir}/*.la ${libdir}/*.a ${libdir}/pkgconfig" |