Add a ton of missing package DESCRIPTION fields.
[vuplus_openembedded] / libesmtp / libesmtp_1.0.1.oe
1 DEPENDS = "virtual/libc openssl"
2 RDEPENDS = "libc6 openssl"
3 DESCRIPTION = "LibESMTP is a library to manage posting \
4 (or submission of) electronic mail using SMTP to a \
5 preconfigured Mail Transport Agent (MTA) such as Exim."
6 FILES_libesmtp_append = ' ${libdir}/esmtp-plugins'
7
8 SRC_URI := http://www.stafford.uklinux.net/libesmtp/${P}.tar.bz2  \
9            file://${FILESDIR}/configure.patch;patch=1
10
11 inherit autotools libtool
12
13 EXTRA_OECONF = '--disable-isoc --with-openssl=${STAGING_DIR}/target'
14
15 do_stage () {
16         install -m 0644 .libs/libesmtp.a ${STAGING_LIBDIR}/
17         install -m 0644 .libs/libesmtp.lai ${STAGING_LIBDIR}/libesmtp.la
18         install -m 0644 .libs/libesmtp.so.5.1.2 ${STAGING_LIBDIR}/
19         ln -sf libesmtp.so.5.1.2 ${STAGING_LIBDIR}/libesmtp.so.5
20         ln -sf libesmtp.so.5.1.2 ${STAGING_LIBDIR}/libesmtp.so
21
22         install -d ${STAGING_DIR}/include
23         install -m 644 auth-client.h ${STAGING_DIR}/target/include
24         install -m 644 auth-plugin.h ${STAGING_DIR}/target/include
25         install -m 644 libesmtp.h ${STAGING_DIR}/target/include
26 }
27